| Package | Description |
|---|---|
| com.sun.javafx.binding | |
| javafx.beans.binding |
Characteristics of Bindings
|
| javafx.beans.property |
The package
javafx.beans.property defines read-only
properties and writable properties, plus a number of implementations. |
| Modifier and Type | Field and Description |
|---|---|
protected ObservableListValue<E> |
ListExpressionHelper.observable |
| Modifier and Type | Method and Description |
|---|---|
static <E> ListExpressionHelper<E> |
ListExpressionHelper.addListener(ListExpressionHelper<E> helper,
ObservableListValue<E> observable,
ChangeListener<? super ObservableList<E>> listener) |
static <E> ListExpressionHelper<E> |
ListExpressionHelper.addListener(ListExpressionHelper<E> helper,
ObservableListValue<E> observable,
InvalidationListener listener) |
static <E> ListExpressionHelper<E> |
ListExpressionHelper.addListener(ListExpressionHelper<E> helper,
ObservableListValue<E> observable,
ListChangeListener<? super E> listener) |
| Modifier and Type | Class and Description |
|---|---|
class |
ListBinding<E>
Base class that provides most of the functionality needed to implement a
Binding of an ObservableList. |
class |
ListExpression<E>
A
ListExpression is a
ObservableListValue plus additional convenience
methods to generate bindings in a fluent style. |
| Modifier and Type | Method and Description |
|---|---|
static <E> ListExpression<E> |
ListExpression.listExpression(ObservableListValue<E> value)
Returns a
ListExpression that wraps a
ObservableListValue. |
| Modifier and Type | Class and Description |
|---|---|
class |
ListProperty<E>
This class provides a full implementation of a
Property wrapping a
ObservableList. |
class |
ListPropertyBase<E>
The class
ListPropertyBase is the base class for a property
wrapping an ObservableList. |
class |
ReadOnlyListProperty<E>
Super class for all readonly properties wrapping an
ObservableList. |
class |
ReadOnlyListPropertyBase<E>
Base class for all readonly properties wrapping a
ObservableList. |
class |
ReadOnlyListWrapper<E>
This class provides a convenient class to define read-only properties.
|
private class |
ReadOnlyListWrapper.ReadOnlyPropertyImpl |
class |
SimpleListProperty<E>
This class provides a full implementation of a
Property wrapping an
ObservableList. |