Uses of Interface
org.jdesktop.observablecollections.ObservableMap
-
Packages that use ObservableMap Package Description org.jdesktop.observablecollections Provides support for observing changes to collection classes. -
-
Uses of ObservableMap in org.jdesktop.observablecollections
Methods in org.jdesktop.observablecollections that return ObservableMap Modifier and Type Method Description static <K,V>
ObservableMap<K,V>ObservableCollections. observableMap(java.util.Map<K,V> map)Creates and returns anObservableMapwrapping the suppliedMap.Methods in org.jdesktop.observablecollections with parameters of type ObservableMap Modifier and Type Method Description voidObservableMapListener. mapKeyAdded(ObservableMap map, java.lang.Object key)Notification that a key has been added.voidObservableMapListener. mapKeyRemoved(ObservableMap map, java.lang.Object key, java.lang.Object value)Notification that a key has been removedvoidObservableMapListener. mapKeyValueChanged(ObservableMap map, java.lang.Object key, java.lang.Object lastValue)Notification that the value of an existing key has changed.
-