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 SummaryProperties declared in class javafx.beans.binding.SetExpressionempty, size
- 
Constructor SummaryConstructors Constructor Description ReadOnlySetWrapper()The 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 SummaryModifier and Type Method Description ReadOnlySetProperty<E>getReadOnlyProperty()Returns the readonly property, that is synchronized with thisReadOnlySetWrapper.Methods declared in class javafx.beans.property.SetPropertyBasefireValueChangedEvent, fireValueChangedEvent, invalidated, toStringMethods declared in class javafx.beans.property.ReadOnlySetPropertybindContent, bindContentBidirectional, hashCode, unbindContent, unbindContentBidirectionalMethods declared in class javafx.beans.binding.SetExpressionasString, emptyProperty, getSize, isEqualTo, isNotEqualTo, isNotNull, isNull, setExpression, sizePropertyMethods declared in class java.lang.Objectclone, equals, finalize, getClass, notify, notifyAll, wait, wait, waitMethods declared in interface java.util.CollectionparallelStream, removeIf, stream, toArrayMethods declared in interface javafx.beans.ObservableaddListener, removeListenerMethods declared in interface javafx.beans.value.ObservableObjectValuegetMethods declared in interface javafx.collections.ObservableSetaddListener, removeListenerMethods declared in interface javafx.beans.value.ObservableValueaddListener, getValue, removeListenerMethods declared in interface javafx.beans.property.Propertybind, bindBidirectional, isBound, unbind, unbindBidirectionalMethods declared in interface javafx.beans.property.ReadOnlyPropertygetBean, getNameMethods declared in interface java.util.Setadd, addAll, clear, contains, containsAll, equals, hashCode, isEmpty, iterator, remove, removeAll, retainAll, size, spliterator, toArray, toArrayMethods declared in interface javafx.beans.value.WritableObjectValueget, setMethods declared in interface javafx.beans.value.WritableValuegetValue, setValue
- 
Constructor Details- 
ReadOnlySetWrapperpublic ReadOnlySetWrapper()The constructor ofReadOnlySetWrapper
- 
ReadOnlySetWrapperThe constructor ofReadOnlySetWrapper- Parameters:
- initialValue- the initial value of the wrapped value
 
- 
ReadOnlySetWrapperThe constructor ofReadOnlySetWrapper- Parameters:
- bean- the bean of this- ReadOnlySetWrapper
- name- the name of this- ReadOnlySetWrapper
 
- 
ReadOnlySetWrapperThe constructor ofReadOnlySetWrapper- Parameters:
- bean- the bean of this- ReadOnlySetWrapper
- name- the name of this- ReadOnlySetWrapper
- initialValue- the initial value of the wrapped value
 
 
- 
- 
Method Details- 
getReadOnlyPropertyReturns the readonly property, that is synchronized with thisReadOnlySetWrapper.- Returns:
- the readonly property
 
 
-