Interface ObservableMapListener
-
public interface ObservableMapListenerNotification types from anObservableMap.- Author:
- sky
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidmapKeyAdded(ObservableMap map, Object key)Notification that a key has been added.voidmapKeyRemoved(ObservableMap map, Object key, Object value)Notification that a key has been removedvoidmapKeyValueChanged(ObservableMap map, Object key, Object lastValue)Notification that the value of an existing key has changed.
-
-
-
Method Detail
-
mapKeyValueChanged
void mapKeyValueChanged(ObservableMap map, Object key, Object lastValue)
Notification that the value of an existing key has changed.- Parameters:
map- theObservableMapthat changedkey- the keylastValue- the previous value
-
mapKeyAdded
void mapKeyAdded(ObservableMap map, Object key)
Notification that a key has been added.- Parameters:
map- theObservableMapthat changedkey- the key
-
mapKeyRemoved
void mapKeyRemoved(ObservableMap map, Object key, Object value)
Notification that a key has been removed- Parameters:
map- theObservableMapthat changedkey- the keyvalue- value for key before key was removed
-
-