Package net.infonode.properties.util
Interface PropertyChangeListener
-
public interface PropertyChangeListener
The listener interface for receiving changes to a property value.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
propertyChanged(Property property, java.lang.Object valueContainer, java.lang.Object oldValue, java.lang.Object newValue)
Invoked when a property value has changed.
-
-
-
Method Detail
-
propertyChanged
void propertyChanged(Property property, java.lang.Object valueContainer, java.lang.Object oldValue, java.lang.Object newValue)
Invoked when a property value has changed.- Parameters:
property
- the propertyvalueContainer
- the object containing the valueoldValue
- the old property valuenewValue
- the new property value
-
-