53545556575859
* @param target */ public BindableWidgetAdapter(IBindableWidget<V> target) { if(target == null) throw new IllegalArgumentException(); this.target = target; changeSupport = new PropertyChangeSupport(target); }
646566676869707172
setValue(value); } protected final PropertyChangeSupport getChangeSupport() { if(changeSupport == null) { changeSupport = new PropertyChangeSupport(this); } return changeSupport; }