public abstract class MapProperty<K, V>
  Comment     Returned-by     Constructor-argument     Method-argument     Field-type     Type-bound     Links  

This class provides a full implementation of a Property wrapping a javafx.collections.ObservableMap. The value of a MapProperty can be get and set with get(), getValue(), set(Object), and setValue(javafx.collections.ObservableMap). A property can be bound and unbound unidirectional with bind(javafx.beans.value.ObservableValue) and unbind(). Bidirectional bindings can be created and removed with bindBidirectional(Property) and unbindBidirectional(Property). The context of a MapProperty can be read with getBean() and getName().

extends ReadOnlyMapProperty<K, V> implements Property<ObservableMap<K, V>>, WritableMapValue<K, V>

Parameters:
<K>    the type of the key elements of the Map
<V>    the type of the value elements of the Map

See also:
javafx.collections.ObservableMap, javafx.beans.value.ObservableMapValue, javafx.beans.value.WritableMapValue, ReadOnlyMapProperty, Property

Since:  JavaFX 2.1