Example usage for Java javafx.beans.property IntegerProperty fields, constructors, methods, implement or subclass
The text is from its open source code.
DoubleBinding | add(final double other) |
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 . |
int | get() Returns the current value of this ObservableIntegerValue . |
Integer | getValue() |
boolean | isBound() Can be used to check, if a Property is bound. |
DoubleBinding | multiply(final double other) |
void | removeListener(ChangeListener super T> listener) Removes the given listener from the list of listeners that are notified whenever the value of the ObservableValue changes. |
void | set(int value) Set the wrapped value. |
void | unbind() Remove the unidirectional binding for this Property . |