T - the type of the value wrapped by the propertypublic interface NestedProperty<T> extends javafx.beans.property.Property<T>, ReadOnlyNestedProperty<T>
A Property which is based on a Nesting.
Simply put, this property is always bound to the nesting's inner observable (more precisely, it is bound to the
Property instance contained in the optional value held by the nesting's
innerObservable property).
Nesting). In that case the innerObservablePresent
property is false. How else the nested property behaves depends on its configuration which was determined when it was
build.
onInnerObservableMissing... methods on the nested property builder (e.g.
onInnerObservableMissingSetDefaultValue
).
onUpdateWhenInnerObservableMissingAcceptValues). The property will then be bound to the new observable and hence
forget the intermediate value. (Since this property's change listeners are called, the replaced value can be caught
there before it gets lost.)innerObservablePresentPropertybind, bindBidirectional, isBound, unbind, unbindBidirectionalinnerObservablePresentProperty, isInnerObservablePresentThis documentation is licensed under CC-BY 4.0, attributed to Nicolai Parlog from CodeFX.