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
<E> | the type of the List elements |
javafx.collections.ObservableList, javafx.beans.value.ObservableListValue, javafx.beans.value.WritableListValue, ReadOnlyListProperty, Property