Module javafx.base

Class ReadOnlyListWrapper<E>

All Implemented Interfaces:
Iterable<E>, Collection<E>, List<E>, Observable, Property<ObservableList<E>>, ReadOnlyProperty<ObservableList<E>>, ObservableListValue<E>, ObservableObjectValue<ObservableList<E>>, ObservableValue<ObservableList<E>>, WritableListValue<E>, WritableObjectValue<ObservableList<E>>, WritableValue<ObservableList<E>>, ObservableList<E>

public class ReadOnlyListWrapper<E> extends SimpleListProperty<E>
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.1
  • Constructor Details

    • ReadOnlyListWrapper

      public ReadOnlyListWrapper()
      The constructor of ReadOnlyListWrapper
    • ReadOnlyListWrapper

      public ReadOnlyListWrapper(ObservableList<E> initialValue)
      The constructor of ReadOnlyListWrapper
      Parameters:
      initialValue - the initial value of the wrapped value
    • ReadOnlyListWrapper

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

      public ReadOnlyListWrapper(Object bean, String name, ObservableList<E> initialValue)
      The constructor of ReadOnlyListWrapper
      Parameters:
      bean - the bean of this ReadOnlyListWrapper
      name - the name of this ReadOnlyListWrapper
      initialValue - the initial value of the wrapped value
  • Method Details

    • getReadOnlyProperty

      public ReadOnlyListProperty<E> getReadOnlyProperty()
      Returns the readonly property, that is synchronized with this ReadOnlyListWrapper.
      Returns:
      the readonly property