Interface ReadOnlyProperty<T>

Type Parameters:
T - the type of the wrapped value
All Superinterfaces:
Observable, ObservableValue<T>
All Known Subinterfaces:
Property<T>
All Known Implementing Classes:
BooleanProperty, BooleanPropertyBase, ConvertedProperty, DoubleProperty, DoublePropertyBase, IntegerProperty, IntegerPropertyBase, ListProperty, ListPropertyBase, LongProperty, LongPropertyBase, ObjectProperty, ObjectPropertyBase, ReadOnlyBooleanProperty, ReadOnlyBooleanPropertyBase, ReadOnlyDoubleProperty, ReadOnlyIntegerProperty, ReadOnlyIntegerPropertyBase, ReadOnlyListProperty, ReadOnlyLongProperty, ReadOnlyObjectProperty, ReadOnlyObjectPropertyBase, ReadOnlyObjectWrapper, ReadOnlyStringProperty, SimpleBooleanProperty, SimpleDoubleProperty, SimpleIntegerProperty, SimpleListProperty, SimpleLongProperty, SimpleObjectProperty, SimpleStringProperty, StringProperty, StringPropertyBase, StyleableBooleanProperty, StyleableIntegerProperty, StyleableObjectProperty

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 Details

    • getBean

      Object getBean()
      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
    • getName

      String getName()
      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