You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Depending on the kind of binding such methods would most likely be added to either AbstractNestingBuilderOnObservableValue (unidirectional) or AbstractNestingBuilderOnProperty (bidirectional).
But an implementation should consider the possibility that the user or other libraries (or this one) might provide additional kinds of bindings. This means that it would not suffice to "simply" hardcode all currently existing bindings from JavaFX 8 into the above mentioned classes (besides being a ****load of work).
Perhaps it is possible to conceive a more general approach to creating bindings which allows to easily access new kinds of bindings (e.g. via a binding factory).
The text was updated successfully, but these errors were encountered:
Description
In order to bind to/from a nesting's inner property it is currently necessary to first create a nested property and then bind to/from that one:
The following would be more succinct:
Implementation
Depending on the kind of binding such methods would most likely be added to either
AbstractNestingBuilderOnObservableValue
(unidirectional) orAbstractNestingBuilderOnProperty
(bidirectional).But an implementation should consider the possibility that the user or other libraries (or this one) might provide additional kinds of bindings. This means that it would not suffice to "simply" hardcode all currently existing bindings from JavaFX 8 into the above mentioned classes (besides being a ****load of work).
Perhaps it is possible to conceive a more general approach to creating bindings which allows to easily access new kinds of bindings (e.g. via a binding factory).
The text was updated successfully, but these errors were encountered: