Class ReadOnlySetWrapper<E>
java.lang.Object
javafx.beans.binding.SetExpression<E>
javafx.beans.property.ReadOnlySetProperty<E>
javafx.beans.property.SetProperty<E>
javafx.beans.property.SetPropertyBase<E>
javafx.beans.property.SimpleSetProperty<E>
javafx.beans.property.ReadOnlySetWrapper<E>
- Type Parameters:
E- the set element type
- All Implemented Interfaces:
Iterable<E>, Collection<E>, Set<E>, Observable, Property<ObservableSet<E>>, ReadOnlyProperty<ObservableSet<E>>, ObservableObjectValue<ObservableSet<E>>, ObservableSetValue<E>, ObservableValue<ObservableSet<E>>, WritableObjectValue<ObservableSet<E>>, WritableSetValue<E>, WritableValue<ObservableSet<E>>, ObservableSet<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 SetPropertyBase
empty, size -
Constructor Summary
ConstructorsConstructorDescriptionThe constructor ofReadOnlySetWrapperReadOnlySetWrapper(Object bean, String name) The constructor ofReadOnlySetWrapperReadOnlySetWrapper(Object bean, String name, ObservableSet<E> initialValue) The constructor ofReadOnlySetWrapperReadOnlySetWrapper(ObservableSet<E> initialValue) The constructor ofReadOnlySetWrapper -
Method Summary
Modifier and TypeMethodDescriptionReturns the readonly property, that is synchronized with thisReadOnlySetWrapper.Methods declared in class SimpleSetProperty
getBean, getNameMethods declared in class SetPropertyBase
addListener, addListener, addListener, bind, emptyProperty, fireValueChangedEvent, fireValueChangedEvent, get, invalidated, isBound, removeListener, removeListener, removeListener, set, sizeProperty, toString, unbindMethods declared in class SetProperty
bindBidirectional, setValue, unbindBidirectionalMethods declared in class ReadOnlySetProperty
bindContent, bindContentBidirectional, equals, hashCode, unbindContent, unbindContentBidirectionalMethods declared in class SetExpression
add, addAll, asString, clear, contains, containsAll, getSize, getValue, isEmpty, isEqualTo, isNotEqualTo, isNotNull, isNull, iterator, remove, removeAll, retainAll, setExpression, size, toArray, toArrayMethods declared in class Object
clone, equals, finalize, getClass, notify, notifyAll, wait, wait, waitMethods declared in interface Collection
parallelStream, removeIf, stream, toArrayMethods declared in interface Observable
subscribeMethods declared in interface ObservableValue
flatMap, getValue, map, orElse, subscribe, subscribe, whenMethods declared in interface Set
add, addAll, clear, contains, containsAll, equals, hashCode, isEmpty, iterator, remove, removeAll, retainAll, size, spliterator, toArray, toArrayMethods declared in interface WritableValue
getValue
-
Constructor Details
-
ReadOnlySetWrapper
public ReadOnlySetWrapper()The constructor ofReadOnlySetWrapper -
ReadOnlySetWrapper
The constructor ofReadOnlySetWrapper- Parameters:
initialValue- the initial value of the wrapped value
-
ReadOnlySetWrapper
-
ReadOnlySetWrapper
The constructor ofReadOnlySetWrapper- Parameters:
bean- the bean of thisReadOnlySetWrappername- the name of thisReadOnlySetWrapperinitialValue- the initial value of the wrapped value
-
-
Method Details
-
getReadOnlyProperty
Returns the readonly property, that is synchronized with thisReadOnlySetWrapper.- Returns:
- the readonly property
-