public abstract class ListProperty<E>
  Comment     Returned-by     Constructor-argument     Method-argument     Field-type     Type-bound     Links  

This class provides a full implementation of a Property wrapping an javafx.collections.ObservableList. The value of a ListProperty can be get and set with get(), getValue(), set(Object), and setValue(ObservableList). 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 ListProperty can be read with getBean() and getName().

extends ReadOnlyListProperty<E> implements Property<ObservableList<E>>, WritableListValue<E>

Parameters:
<E>    the type of the List elements

See also:
javafx.collections.ObservableList, javafx.beans.value.ObservableListValue, javafx.beans.value.WritableListValue, ReadOnlyListProperty, Property

Since:  JavaFX 2.1