Java javafx.beans.property Property fields, constructors, methods, implement or subclass

Example usage for Java javafx.beans.property Property fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javafx.beans.property Property.

The text is from its open source code.

Method

voidaddListener(ChangeListener listener)
Adds a ChangeListener which will be notified whenever the value of the ObservableValue changes.
voidbind(ObservableValue observable)
Create a unidirection binding for this Property .
voidbindBidirectional(Property other)
Create a bidirectional binding between this Property and another one.
StringgetName()
Returns the name of this property.
TgetValue()
Returns the current value of this ObservableValue
booleanisBound()
Can be used to check, if a Property is bound.
voidsetValue(T value)
Set the wrapped value.
voidunbind()
Remove the unidirectional binding for this Property .