com.borland.primetime.properties
Interface NodePropertyListener
- public interface NodePropertyListener
Objects that implement the NodePropertyListener interface can be added to
individual NodeProperty instances to receive notification when the property
value changes.
Method Summary |
void |
nodePropertyChanged(NodeProperty property,
Node node,
java.lang.String oldValue,
java.lang.String newValue)
Notifies the listener that a property value has changed. |
nodePropertyChanged
public void nodePropertyChanged(NodeProperty property,
Node node,
java.lang.String oldValue,
java.lang.String newValue)
- Notifies the listener that a property value has changed.
- Parameters:
property
- The NodeProperty instance whose value has been changed.node
- The node for which the property was changed.oldValue
- The value prior to the change.newValue
- The newly assigned property value.