Interface BindTarget
public interface BindTarget
Allows binding arbitrary components to data storage
-
Method Summary
Modifier and TypeMethodDescriptionvoidpropertyChanged(Component source, String propertyName, java.lang.Object oldValue, java.lang.Object newValue) Fired when a property of the component changes to a new value
-
Method Details
-
propertyChanged
void propertyChanged(Component source, String propertyName, java.lang.Object oldValue, java.lang.Object newValue) Fired when a property of the component changes to a new value
Parameters
-
source: the source component -
propertyName: the name of the property -
oldValue: the old value of the property -
newValue: the new value for the property
-
-