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>
- 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 javafx.beans.property.SetPropertyBase
empty, size
-
Constructor Summary
ConstructorDescriptionThe constructor ofReadOnlySetWrapper
ReadOnlySetWrapper
(Object bean, String name) The constructor ofReadOnlySetWrapper
ReadOnlySetWrapper
(Object bean, String name, ObservableSet<E> initialValue) The constructor ofReadOnlySetWrapper
ReadOnlySetWrapper
(ObservableSet<E> initialValue) The constructor ofReadOnlySetWrapper
-
Method Summary
Modifier and TypeMethodDescriptionReturns the readonly property, that is synchronized with thisReadOnlySetWrapper
.Methods declared in class javafx.beans.property.SimpleSetProperty
getBean, getName
Methods declared in class javafx.beans.property.SetPropertyBase
addListener, addListener, addListener, bind, emptyProperty, fireValueChangedEvent, fireValueChangedEvent, get, invalidated, isBound, removeListener, removeListener, removeListener, set, sizeProperty, toString, unbind
Methods declared in class javafx.beans.property.SetProperty
bindBidirectional, setValue, unbindBidirectional
Methods declared in class javafx.beans.property.ReadOnlySetProperty
bindContent, bindContentBidirectional, equals, hashCode, unbindContent, unbindContentBidirectional
Methods declared in class javafx.beans.binding.SetExpression
add, addAll, asString, clear, contains, containsAll, getSize, getValue, isEmpty, isEqualTo, isNotEqualTo, isNotNull, isNull, iterator, remove, removeAll, retainAll, setExpression, size, toArray, toArray
Methods declared in class java.lang.Object
clone, equals, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods declared in interface java.util.Collection
parallelStream, removeIf, stream, toArray
Methods declared in interface javafx.beans.Observable
subscribe
Methods declared in interface javafx.beans.value.ObservableValue
flatMap, getValue, map, orElse, subscribe, subscribe, when
Methods declared in interface java.util.Set
add, addAll, clear, contains, containsAll, equals, hashCode, isEmpty, iterator, remove, removeAll, retainAll, size, spliterator, toArray, toArray
Methods declared in interface javafx.beans.value.WritableValue
getValue
-
Constructor Details
-
ReadOnlySetWrapper
public ReadOnlySetWrapper()The constructor ofReadOnlySetWrapper
-
ReadOnlySetWrapper
The constructor ofReadOnlySetWrapper
- Parameters:
initialValue
- the initial value of the wrapped value
-
ReadOnlySetWrapper
The constructor ofReadOnlySetWrapper
- Parameters:
bean
- the bean of thisReadOnlySetWrapper
name
- the name of thisReadOnlySetWrapper
-
ReadOnlySetWrapper
The constructor ofReadOnlySetWrapper
- Parameters:
bean
- the bean of thisReadOnlySetWrapper
name
- the name of thisReadOnlySetWrapper
initialValue
- the initial value of the wrapped value
-
-
Method Details
-
getReadOnlyProperty
Returns the readonly property, that is synchronized with thisReadOnlySetWrapper
.- Returns:
- the readonly property
-