Class ReadOnlyListWrapper<E>
java.lang.Object
javafx.beans.binding.ListExpression<E>
javafx.beans.property.ReadOnlyListProperty<E>
javafx.beans.property.ListProperty<E>
javafx.beans.property.ListPropertyBase<E>
javafx.beans.property.SimpleListProperty<E>
javafx.beans.property.ReadOnlyListWrapper<E>
- Type Parameters:
E- the list element type
- All Implemented Interfaces:
Iterable<E>, Collection<E>, List<E>, SequencedCollection<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>
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
-
Property Summary
Properties declared in class ListPropertyBase
empty, size -
Constructor Summary
ConstructorsConstructorDescriptionThe constructor ofReadOnlyListWrapperReadOnlyListWrapper(Object bean, String name) The constructor ofReadOnlyListWrapperReadOnlyListWrapper(Object bean, String name, ObservableList<E> initialValue) The constructor ofReadOnlyListWrapperReadOnlyListWrapper(ObservableList<E> initialValue) The constructor ofReadOnlyListWrapper -
Method Summary
Modifier and TypeMethodDescriptionReturns the readonly property, that is synchronized with thisReadOnlyListWrapper.Methods declared in class SimpleListProperty
getBean, getNameMethods declared in class ListPropertyBase
addListener, addListener, addListener, bind, emptyProperty, fireValueChangedEvent, fireValueChangedEvent, get, invalidated, isBound, removeListener, removeListener, removeListener, set, sizeProperty, toString, unbindMethods declared in class ListProperty
bindBidirectional, setValue, unbindBidirectionalMethods declared in class ReadOnlyListProperty
bindContent, bindContentBidirectional, equals, hashCode, unbindContent, unbindContentBidirectionalMethods declared in class ListExpression
add, add, addAll, addAll, addAll, asString, clear, contains, containsAll, get, getSize, getValue, indexOf, isEmpty, isEqualTo, isNotEqualTo, isNotNull, isNull, iterator, lastIndexOf, listExpression, listIterator, listIterator, remove, remove, remove, removeAll, removeAll, retainAll, retainAll, set, setAll, setAll, size, subList, toArray, toArray, valueAt, valueAtMethods declared in class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods declared in interface Collection
parallelStream, removeIf, stream, toArrayMethods declared in interface List
add, add, addAll, addAll, addFirst, addLast, clear, contains, containsAll, equals, get, getFirst, getLast, hashCode, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, removeFirst, removeLast, replaceAll, retainAll, reversed, set, size, sort, spliterator, subList, toArray, toArrayMethods declared in interface Observable
subscribeMethods declared in interface ObservableList
addAll, filtered, remove, removeAll, retainAll, setAll, setAll, sorted, sortedMethods declared in interface ObservableValue
flatMap, getValue, map, orElse, subscribe, subscribe, whenMethods declared in interface WritableValue
getValue
-
Constructor Details
-
ReadOnlyListWrapper
public ReadOnlyListWrapper()The constructor ofReadOnlyListWrapper -
ReadOnlyListWrapper
The constructor ofReadOnlyListWrapper- Parameters:
initialValue- the initial value of the wrapped value
-
ReadOnlyListWrapper
-
ReadOnlyListWrapper
The constructor ofReadOnlyListWrapper- Parameters:
bean- the bean of thisReadOnlyListWrappername- the name of thisReadOnlyListWrapperinitialValue- the initial value of the wrapped value
-
-
Method Details
-
getReadOnlyProperty
Returns the readonly property, that is synchronized with thisReadOnlyListWrapper.- Returns:
- the readonly property
-