@Override public
void dispose ()
Implementing: javafx.beans.property.adapter.ReadOnlyJavaBeanProperty
Signals to the JavaFX property that it will not be used anymore and any
references can be removed. A call of this method usually results in the
property stopping to observe the Java Bean property by unregistering its
listener(s).
@Override public
void fireValueChangedEvent ()
@Override
public T get ()
@Override
public Object getBean ()
Implementing: javafx.beans.property.ReadOnlyProperty
Returns the Object
that contains this property. If this property
is not contained in an Object
, null
is returned.
Returns: the containing Object
or null
@Override
public String getName ()
Implementing: javafx.beans.property.ReadOnlyProperty
Returns the name of this property. If the property does not have a name,
this method returns an empty String
.
Returns: the name or an empty String