Uses of Interface
javafx.beans.value.ObservableListValue
-
Packages that use ObservableListValue Package Description javafx.beans.binding Provides classes that create and operate on aBinding
that calculates a value that depends on one or more sources.javafx.beans.property The packagejavafx.beans.property
defines read-only properties and writable properties, plus a number of implementations. -
-
Uses of ObservableListValue in javafx.beans.binding
Classes in javafx.beans.binding that implement ObservableListValue Modifier and Type Class Description class
ListBinding<E>
Base class that provides most of the functionality needed to implement aBinding
of anObservableList
.class
ListExpression<E>
ListExpression
is anObservableListValue
plus additional convenience methods to generate bindings in a fluent style.Methods in javafx.beans.binding with parameters of type ObservableListValue Modifier and Type Method Description static <E> ListExpression<E>
ListExpression. listExpression(ObservableListValue<E> value)
Returns aListExpression
that wraps aObservableListValue
. -
Uses of ObservableListValue in javafx.beans.property
Classes in javafx.beans.property that implement ObservableListValue Modifier and Type Class Description class
ListProperty<E>
This class provides a full implementation of aProperty
wrapping anObservableList
.class
ListPropertyBase<E>
The classListPropertyBase
is the base class for a property wrapping anObservableList
.class
ReadOnlyListProperty<E>
Superclass for all readonly properties wrapping anObservableList
.class
ReadOnlyListPropertyBase<E>
Base class for all readonly properties wrapping anObservableList
.class
ReadOnlyListWrapper<E>
This class provides a convenient class to define read-only properties.class
SimpleListProperty<E>
This class provides a full implementation of aProperty
wrapping anObservableList
.
-