Module javafx.base

Class ObjectPropertyBase<T>

java.lang.Object
Type Parameters:
T - the type of the wrapped value
All Implemented Interfaces:
Observable, Property<T>, ReadOnlyProperty<T>, ObservableObjectValue<T>, ObservableValue<T>, WritableObjectValue<T>, WritableValue<T>
Direct Known Subclasses:
SimpleObjectProperty, StyleableObjectProperty

public abstract class ObjectPropertyBase<T> extends ObjectProperty<T>
The class ObjectPropertyBase is the base class for a property wrapping an arbitrary Object. It provides all the functionality required for a property except for the ReadOnlyProperty.getBean() and ReadOnlyProperty.getName() methods, which must be implemented by extending classes.
Since:
JavaFX 2.0
See Also: