Interface ObservableMapListener
public interface ObservableMapListener
Notification types from an
ObservableMap.-
Method Summary
Modifier and TypeMethodDescriptionvoidmapKeyAdded(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 Details
-
mapKeyValueChanged
Notification that the value of an existing key has changed.- Parameters:
map- theObservableMapthat changedkey- the keylastValue- the previous value
-
mapKeyAdded
Notification that a key has been added.- Parameters:
map- theObservableMapthat changedkey- the key
-
mapKeyRemoved
Notification that a key has been removed- Parameters:
map- theObservableMapthat changedkey- the keyvalue- value for key before key was removed
-