Interface ObservableMap<K,V> 
- Type Parameters:
- K- the map key element type
- V- the map value element type
- All Superinterfaces:
- Map<K,,- V> - Observable
- All Known Subinterfaces:
- ObservableMapValue<K,,- V> - Platform.Preferences,- WritableMapValue<K,- V> 
- All Known Implementing Classes:
- MapBinding,- MapExpression,- MapProperty,- MapPropertyBase,- ReadOnlyMapProperty,- ReadOnlyMapPropertyBase,- ReadOnlyMapWrapper,- SimpleMapProperty
A map that allows observers to track changes when they occur. Implementations can be created using methods in 
FXCollections
 such as observableHashMap, or with a
 SimpleMapProperty.- Since:
- JavaFX 2.0
- See Also:
- 
Nested Class Summary
- 
Method SummaryModifier and TypeMethodDescriptionvoidaddListener(MapChangeListener<? super K, ? super V> listener) Add a listener to this observable map.voidremoveListener(MapChangeListener<? super K, ? super V> listener) Tries to removed a listener from this observable map.Methods declared in interface java.util.Mapclear, compute, computeIfAbsent, computeIfPresent, containsKey, containsValue, entrySet, equals, forEach, get, getOrDefault, hashCode, isEmpty, keySet, merge, put, putAll, putIfAbsent, remove, remove, replace, replace, replaceAll, size, valuesMethods declared in interface javafx.beans.ObservableaddListener, removeListener, subscribe
- 
Method Details- 
addListenerAdd a listener to this observable map.- Parameters:
- listener- the listener for listening to the list changes
 
- 
removeListenerTries to removed a listener from this observable map. If the listener is not attached to this map, nothing happens.- Parameters:
- listener- a listener to remove
 
 
-