Module javafx.base

Class ReadOnlyObjectWrapper<T>

All Implemented Interfaces:
Observable, Property<T>, ReadOnlyProperty<T>, ObservableObjectValue<T>, ObservableValue<T>, WritableObjectValue<T>, WritableValue<T>

public class ReadOnlyObjectWrapper<T> extends SimpleObjectProperty<T>
This class provides a convenient class to define read-only properties. It creates two properties that are synchronized. One property is read-only and can be passed to external users. The other property is read- and writable and should be used internally only.
Since:
JavaFX 2.0
  • Constructor Details

    • ReadOnlyObjectWrapper

      public ReadOnlyObjectWrapper()
      The constructor of ReadOnlyObjectWrapper
    • ReadOnlyObjectWrapper

      public ReadOnlyObjectWrapper(T initialValue)
      The constructor of ReadOnlyObjectWrapper
      Parameters:
      initialValue - the initial value of the wrapped value
    • ReadOnlyObjectWrapper

      public ReadOnlyObjectWrapper(Object bean, String name)
      The constructor of ReadOnlyObjectWrapper
      Parameters:
      bean - the bean of this ReadOnlyObjectProperty
      name - the name of this ReadOnlyObjectProperty
    • ReadOnlyObjectWrapper

      public ReadOnlyObjectWrapper(Object bean, String name, T initialValue)
      The constructor of ReadOnlyObjectWrapper
      Parameters:
      bean - the bean of this ReadOnlyObjectProperty
      name - the name of this ReadOnlyObjectProperty
      initialValue - the initial value of the wrapped value
  • Method Details

    • getReadOnlyProperty

      public ReadOnlyObjectProperty<T> getReadOnlyProperty()
      Returns the readonly property, that is synchronized with this ReadOnlyObjectWrapper.
      Returns:
      the readonly property