List of usage examples for com.jgoodies.binding.beans BeanAdapter addBeanPropertyChangeListener
public synchronized void addBeanPropertyChangeListener(PropertyChangeListener listener)
From source file:eu.europa.ec.markt.dss.applet.view.DSSAppletView.java
License:Open Source License
/** * //from ww w. j a v a2 s . c om * The default constructor for DSSAppletView. * * @param core * @param controller * @param model */ public DSSAppletView(final AppletCore core, final C controller, final M model) { super(core, controller, model); final BeanAdapter<M> beanAdapter = new BeanAdapter<M>(model); beanAdapter.addBeanPropertyChangeListener(this); }