Package javafx.beans.binding
Provides classes that create and operate on a Binding
that calculates a value that depends on one or more sources.
Characteristics of Bindings
Bindings are assembled from one or more sources, usually called their dependencies. A binding observes its dependencies for changes and updates its own value according to changes in the dependencies.
Almost all bindings defined in this library require
implementations of Observable
for their
dependencies. There are two types of implementations already provided,
the properties in the package javafx.beans.property
and the
observable collections (ObservableList
and
ObservableMap
). Bindings also implement
Observable
and can again serve as sources for other bindings
allowing to construct very complex bindings from simple ones.
Bindings in our implementation are always calculated lazily. That means, if a dependency changes, the result of a binding is not immediately recalculated, but it is marked as invalid. Next time the value of an invalid binding is requested, it is recalculated.
High Level API and Low Level API
The Binding API is roughly divided in two parts, the High Level Binding API and the Low Level Binding API. The High Level Binding API allows to construct simple bindings in an easy to use fashion. Defining a binding with the High Level API should be straightforward, especially when used in an IDE that provides code completion. Unfortunately it has its limitation and at that point the Low Level API comes into play. Experienced Java developers can use the Low Level API to define bindings, if the functionality of the High Level API is not sufficient or to improve the performance. The main goals of the Low Level API are fast execution and small memory footprint.
Following is an example of how both APIs can be used. Assuming
we have four instances of DoubleProperty
a
, b
,
c
, and d
, we can define a binding that calculates a*b
+ c*d
with the High Level API for example like this:
NumberBinding result = Bindings.add (a.multiply(b),
c.multiply(d));
Defining the same binding using the Low Level API could be done like this:
DoubleBinding foo = new DoubleBinding() {
{
super.bind(a, b, c, d);
}
@Override
protected double computeValue() {
return a.getValue() * b.getValue() + c.getValue() * d.getValue();
}
};
-
Interface Summary Interface Description Binding<T> ABinding
calculates a value that depends on one or more sources.NumberBinding A tagging interface to mark all Bindings that wrap a number-value.NumberExpression NumberExpression
is anObservableNumberValue
plus additional convenience methods to generate bindings in a fluent style. -
Class Summary Class Description Bindings Bindings is a helper class with a lot of utility functions to create simple bindings.BooleanBinding Base class that provides most of the functionality needed to implement aBinding
of aboolean
value.BooleanExpression BooleanExpression
is anObservableBooleanValue
plus additional convenience methods to generate bindings in a fluent style.DoubleBinding Base class that provides most of the functionality needed to implement aBinding
of adouble
value.DoubleExpression DoubleExpression
is anObservableDoubleValue
plus additional convenience methods to generate bindings in a fluent style.FloatBinding Base class that provides most of the functionality needed to implement aBinding
of afloat
value.FloatExpression FloatExpression
is anObservableFloatValue
plus additional convenience methods to generate bindings in a fluent style.IntegerBinding Base class that provides most of the functionality needed to implement aBinding
of anint
value.IntegerExpression IntegerExpression
is anObservableIntegerValue
plus additional convenience methods to generate bindings in a fluent style.ListBinding<E> Base class that provides most of the functionality needed to implement aBinding
of anObservableList
.ListExpression<E> ListExpression
is anObservableListValue
plus additional convenience methods to generate bindings in a fluent style.LongBinding Base class that provides most of the functionality needed to implement aBinding
of along
value.LongExpression LongExpression
is anObservableLongValue
plus additional convenience methods to generate bindings in a fluent style.MapBinding<K,V> Base class that provides most of the functionality needed to implement aBinding
of anObservableMap
.MapExpression<K,V> MapExpression
is anObservableMapValue
plus additional convenience methods to generate bindings in a fluent style.NumberExpressionBase NumberExpressionBase
contains convenience methods to generate bindings in a fluent style, that are common to all NumberExpression subclasses.ObjectBinding<T> Base class that provides most of the functionality needed to implement aBinding
of anObject
.ObjectExpression<T> ObjectExpression
is anObservableObjectValue
plus additional convenience methods to generate bindings in a fluent style.SetBinding<E> Base class that provides most of the functionality needed to implement aBinding
of anObservableSet
.SetExpression<E> SetExpression
is anObservableSetValue
plus additional convenience methods to generate bindings in a fluent style.StringBinding Base class that provides most of the functionality needed to implement aBinding
of aString
.StringExpression StringExpression
is anObservableStringValue
plus additional convenience methods to generate bindings in a fluent style.When Starting point for a binding that calculates a ternary expression.