com.borland.primetime.properties
Interface MapPropertyListener
- public interface MapPropertyListener
Objects that implement the MapPropertyListener interface can be added to
individual MapProperty instances to receive notification when the property
value changes.
Method Summary |
void |
mapPropertyChanged(MapProperty property,
java.util.Map map,
java.lang.String oldValue,
java.lang.String newValue)
Notifies the listener that a property value has changed. |
mapPropertyChanged
public void mapPropertyChanged(MapProperty property,
java.util.Map map,
java.lang.String oldValue,
java.lang.String newValue)
- Notifies the listener that a property value has changed.
- Parameters:
property
- The MapProperty instance whose value has been changed.map
- The java.util.Map implementation used to store the value.oldValue
- The value prior to the change.newValue
- The newly assigned property value.