Nesting.See: Description
| Interface | Description |
|---|---|
| Nested |
Indicates that a class is providing some kind of nested functionality.
|
| Nesting<O extends javafx.beans.Observable> |
A nesting encapsulates a hierarchy of nested
ObservableValues. |
| NestingStep<T,O extends javafx.beans.Observable> |
Functions of this type perform the nesting steps from one oservable's value to the next nested observable.
|
| Class | Description |
|---|---|
| BooleanPropertyNestingBuilder |
A builder for all kinds of nested functionality whose inner observable is a
BooleanProperty. |
| DoublePropertyNestingBuilder |
A builder for all kinds of nested functionality whose inner observable is a
DoubleProperty. |
| FloatPropertyNestingBuilder |
A builder for all kinds of nested functionality whose inner observable is a
FloatProperty. |
| IntegerPropertyNestingBuilder |
A builder for all kinds of nested functionality whose inner observable is an
IntegerProperty. |
| LongPropertyNestingBuilder |
A builder for all kinds of nested functionality whose inner observable is a
LongProperty. |
| NestingObserver<O extends javafx.beans.Observable> |
Usability class which observes a
Nesting and executes some methods when the nesting's
innerObservable changes. |
| NestingObserver.NestingObserverBuilder<O extends javafx.beans.Observable> |
Builds a
NestingObserver. |
| Nestings |
This class provides static functions to obtain builders for nested classes like
Nesting or
NestedProperty. |
| ObjectPropertyNestingBuilder<T> |
A builder for all kinds of nested functionality whose inner observable is a
Property. |
| ObservableNestingBuilder |
A builder for all kinds of nested functionality whose inner observable is an
Observable. |
| ObservableNumberValueNestingBuilder |
A builder for all kinds of nested functionality whose inner observable is an
ObservableNumberValue. |
| ObservableValueNestingBuilder<T> |
A builder for all kinds of nested functionality whose inner observable is an
ObservableValue. |
| StringPropertyNestingBuilder |
A builder for all kinds of nested functionality whose inner observable is a
StringProperty. |
Provides functionality around nesting hierarchies - a term which is explained in all detail in the comment on
Nesting.
Nesting encapsulates a hierarchy of nested ObservableValues and collapses them
into a property which always contains the current innermost Observable in that hierarchy. A Nesting
can be used as a basic building block for other nested functionality (see below).
See the comment on Nesting for details.
NestedProperty uses a Nesting to bind its value to the inner
Property in a nesting hierarchy, updating the binding as the inner observable changes its value or is
replaced. It can thus be used to collapse a nesting hierarchy into a single property.
See the comment on NestedProperty for details.
Nesting can also be used to add listeners to its inner observable. These
listeners are moved from one observable to the next as they are replaced.
See the comments on NestedChangeListener and
NestedInvalidationListener for details.
Nestings.This documentation is licensed under CC-BY 4.0, attributed to Nicolai Parlog from CodeFX.