- 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>
public class ReadOnlySetWrapper<E> extends SimpleSetProperty<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 inherited from class javafx.beans.property.SetPropertyBase
empty, size
-
-
Constructor Summary
Constructors Constructor Description ReadOnlySetWrapper()
The 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 Type Method Description protected void
fireValueChangedEvent()
protected void
fireValueChangedEvent(SetChangeListener.Change<? extends E> change)
ReadOnlySetProperty<E>
getReadOnlyProperty()
Returns the readonly property, that is synchronized with thisReadOnlySetWrapper
.-
Methods inherited from class javafx.beans.property.SimpleSetProperty
getBean, getName
-
Methods inherited from class javafx.beans.property.SetPropertyBase
addListener, addListener, addListener, bind, emptyProperty, get, invalidated, isBound, removeListener, removeListener, removeListener, set, sizeProperty, toString, unbind
-
Methods inherited from class javafx.beans.property.SetProperty
bindBidirectional, setValue, unbindBidirectional
-
Methods inherited from class javafx.beans.property.ReadOnlySetProperty
bindContent, bindContentBidirectional, equals, hashCode, unbindContent, unbindContentBidirectional
-
Methods inherited from 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 inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.util.Collection
parallelStream, removeIf, stream, toArray
-
Methods inherited from interface javafx.beans.value.ObservableValue
getValue
-
Methods inherited from interface java.util.Set
add, addAll, clear, contains, containsAll, equals, hashCode, isEmpty, iterator, remove, removeAll, retainAll, size, spliterator, toArray, toArray
-
Methods inherited from interface javafx.beans.value.WritableValue
getValue
-
-
-
-
Constructor Detail
-
ReadOnlySetWrapper
public ReadOnlySetWrapper()
The constructor ofReadOnlySetWrapper
-
ReadOnlySetWrapper
public ReadOnlySetWrapper(ObservableSet<E> initialValue)
The constructor ofReadOnlySetWrapper
- Parameters:
initialValue
- the initial value of the wrapped value
-
ReadOnlySetWrapper
public ReadOnlySetWrapper(Object bean, String name)
The constructor ofReadOnlySetWrapper
- Parameters:
bean
- the bean of thisReadOnlySetWrapper
name
- the name of thisReadOnlySetWrapper
-
ReadOnlySetWrapper
public ReadOnlySetWrapper(Object bean, String name, ObservableSet<E> initialValue)
The constructor ofReadOnlySetWrapper
- Parameters:
bean
- the bean of thisReadOnlySetWrapper
name
- the name of thisReadOnlySetWrapper
initialValue
- the initial value of the wrapped value
-
-
Method Detail
-
getReadOnlyProperty
public ReadOnlySetProperty<E> getReadOnlyProperty()
Returns the readonly property, that is synchronized with thisReadOnlySetWrapper
.- Returns:
- the readonly property
-
fireValueChangedEvent
protected void fireValueChangedEvent()
Sends notifications to all attachedInvalidationListeners
,ChangeListeners
, andSetChangeListener
. This method is called when the value is changed, either manually by callingSetPropertyBase.set(javafx.collections.ObservableSet)
or in case of a bound property, if the binding becomes invalid.- Overrides:
fireValueChangedEvent
in classSetPropertyBase<E>
-
fireValueChangedEvent
protected void fireValueChangedEvent(SetChangeListener.Change<? extends E> change)
Sends notifications to all attachedInvalidationListeners
,ChangeListeners
, andSetChangeListener
. This method is called when the content of the list changes.- Overrides:
fireValueChangedEvent
in classSetPropertyBase<E>
- Parameters:
change
- the change that needs to be propagated
-
-