- Type Parameters:
- T- the type of the wrapped value
- All Superinterfaces:
- Observable,- ObservableValue<T>
- All Known Subinterfaces:
- JavaBeanProperty<T>,- Property<T>,- ReadOnlyJavaBeanProperty<T>
- All Known Implementing Classes:
- BooleanProperty,- BooleanPropertyBase,- DoubleProperty,- DoublePropertyBase,- FloatProperty,- FloatPropertyBase,- IntegerProperty,- IntegerPropertyBase,- JavaBeanBooleanProperty,- JavaBeanDoubleProperty,- JavaBeanFloatProperty,- JavaBeanIntegerProperty,- JavaBeanLongProperty,- JavaBeanObjectProperty,- JavaBeanStringProperty,- ListProperty,- ListPropertyBase,- LongProperty,- LongPropertyBase,- MapProperty,- MapPropertyBase,- ObjectProperty,- ObjectPropertyBase,- ReadOnlyBooleanProperty,- ReadOnlyBooleanPropertyBase,- ReadOnlyBooleanWrapper,- ReadOnlyDoubleProperty,- ReadOnlyDoublePropertyBase,- ReadOnlyDoubleWrapper,- ReadOnlyFloatProperty,- ReadOnlyFloatPropertyBase,- ReadOnlyFloatWrapper,- ReadOnlyIntegerProperty,- ReadOnlyIntegerPropertyBase,- ReadOnlyIntegerWrapper,- ReadOnlyJavaBeanBooleanProperty,- ReadOnlyJavaBeanDoubleProperty,- ReadOnlyJavaBeanFloatProperty,- ReadOnlyJavaBeanIntegerProperty,- ReadOnlyJavaBeanLongProperty,- ReadOnlyJavaBeanObjectProperty,- ReadOnlyJavaBeanStringProperty,- ReadOnlyListProperty,- ReadOnlyListPropertyBase,- ReadOnlyListWrapper,- ReadOnlyLongProperty,- ReadOnlyLongPropertyBase,- ReadOnlyLongWrapper,- ReadOnlyMapProperty,- ReadOnlyMapPropertyBase,- ReadOnlyMapWrapper,- ReadOnlyObjectProperty,- ReadOnlyObjectPropertyBase,- ReadOnlyObjectWrapper,- ReadOnlySetProperty,- ReadOnlySetPropertyBase,- ReadOnlySetWrapper,- ReadOnlyStringProperty,- ReadOnlyStringPropertyBase,- ReadOnlyStringWrapper,- SetProperty,- SetPropertyBase,- SimpleBooleanProperty,- SimpleDoubleProperty,- SimpleFloatProperty,- SimpleIntegerProperty,- SimpleListProperty,- SimpleLongProperty,- SimpleMapProperty,- SimpleObjectProperty,- SimpleSetProperty,- SimpleStringProperty,- SimpleStyleableBooleanProperty,- SimpleStyleableDoubleProperty,- SimpleStyleableFloatProperty,- SimpleStyleableIntegerProperty,- SimpleStyleableLongProperty,- SimpleStyleableObjectProperty,- SimpleStyleableStringProperty,- StringProperty,- StringPropertyBase,- StyleableBooleanProperty,- StyleableDoubleProperty,- StyleableFloatProperty,- StyleableIntegerProperty,- StyleableLongProperty,- StyleableObjectProperty,- StyleableStringProperty
public interface ReadOnlyProperty<T> extends ObservableValue<T>
Generic interface that defines the methods common to all readable properties
 independent of their type.
- Since:
- JavaFX 2.0
- 
Method SummaryMethods declared in interface javafx.beans.ObservableaddListener, removeListenerMethods declared in interface javafx.beans.value.ObservableValueaddListener, getValue, removeListener
- 
Method Details- 
getBeanObject getBean()Returns theObjectthat contains this property. If this property is not contained in anObject,nullis returned.- Returns:
- the containing Objectornull
 
- 
getNameString getName()Returns the name of this property. If the property does not have a name, this method returns an emptyString.- Returns:
- the name or an empty String
 
 
-