Example usage for Java javafx.beans.property ObjectProperty fields, constructors, methods, implement or subclass
The text is from its open source code.
void | addListener(ChangeListener super T> listener) Adds a ChangeListener which will be notified whenever the value of the ObservableValue changes. |
void | bind(ObservableValue extends T> observable) Create a unidirection binding for this Property . |
T | get() Get the wrapped value. |
T | getValue() Returns the current value of this ObservableValue |
void | set(T value) Set the wrapped value. |