Example usage for Java javafx.beans.property StringProperty 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 . |
void | bindBidirectional(Property |
T | get() Returns the current value of this ObservableObjectValue |
String | getValue() |
boolean | isBound() Can be used to check, if a Property is bound. |
void | set(T value) Set the wrapped value. |
void | setValue(String v) |
String | toString() Returns a string representation of this StringProperty object. |