Modifier and Type | Method and Description |
---|---|
public void | bind(ObservableValue<? extends T>
The observable this observable)Property should be bound to.Create a unidirection binding for this |
public void | bindBidirectional(Property<T>
the other other)Property Create a bidirectional binding between this |
public boolean | Returns: true if the Property is bound, false
otherwiseCan be used to check, if a |
public void | |
public void | unbindBidirectional(Property<T>
the other other)Property Removes a bidirectional binding between this |
bind | back to summary |
---|---|
public void bind(ObservableValue<? extends T> observable) Create a unidirection binding for this Note that JavaFX has all the bind calls implemented through weak listeners. This means the bound property can be garbage collected and stopped from being updated.
|
bindBidirectional | back to summary |
---|---|
public void bindBidirectional(Property<T> other) Create a bidirectional binding between this It is possible to have multiple bidirectional bindings of one Property. JavaFX bidirectional binding implementation use weak listeners. This means bidirectional binding does not prevent properties from being garbage collected.
|
isBound | back to summary |
---|---|
public boolean isBound() Can be used to check, if a
|
unbind | back to summary |
---|---|
public void unbind() Remove the unidirectional binding for this |
unbindBidirectional | back to summary |
---|---|
public void unbindBidirectional(Property<T> other) Removes a bidirectional binding between this property1.bindBidirectional(property2); property2.unbindBidirectional(property1);
|