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>
- Type Parameters:
- E- the type of the- Setelements
- 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>
- Direct Known Subclasses:
- ReadOnlySetWrapper
This class provides a full implementation of a 
Property wrapping an
 ObservableSet.- Since:
- JavaFX 2.1
- See Also:
- 
Property SummaryProperties declared in class javafx.beans.property.SetPropertyBaseempty, size
- 
Constructor SummaryConstructorsConstructorDescriptionThe constructor ofSimpleSetPropertySimpleSetProperty(Object bean, String name) The constructor ofSimpleSetPropertySimpleSetProperty(Object bean, String name, ObservableSet<E> initialValue) The constructor ofSimpleSetPropertySimpleSetProperty(ObservableSet<E> initialValue) The constructor ofSimpleSetProperty
- 
Method SummaryMethods declared in class javafx.beans.property.SetPropertyBaseaddListener, addListener, addListener, bind, emptyProperty, fireValueChangedEvent, fireValueChangedEvent, get, invalidated, isBound, removeListener, removeListener, removeListener, set, sizeProperty, toString, unbindMethods declared in class javafx.beans.property.SetPropertybindBidirectional, setValue, unbindBidirectionalMethods declared in class javafx.beans.property.ReadOnlySetPropertybindContent, bindContentBidirectional, equals, hashCode, unbindContent, unbindContentBidirectionalMethods declared in class javafx.beans.binding.SetExpressionadd, addAll, asString, clear, contains, containsAll, getSize, getValue, isEmpty, isEqualTo, isNotEqualTo, isNotNull, isNull, iterator, remove, removeAll, retainAll, setExpression, size, toArray, toArrayMethods 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.value.ObservableValuegetValueMethods 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.WritableValuegetValue
- 
Constructor Details- 
SimpleSetPropertypublic SimpleSetProperty()The constructor ofSimpleSetProperty
- 
SimpleSetPropertyThe constructor ofSimpleSetProperty- Parameters:
- initialValue- the initial value of the wrapped value
 
- 
SimpleSetPropertyThe constructor ofSimpleSetProperty- Parameters:
- bean- the bean of this- SetProperty
- name- the name of this- SetProperty
 
- 
SimpleSetPropertyThe constructor ofSimpleSetProperty- Parameters:
- bean- the bean of this- SetProperty
- name- the name of this- SetProperty
- initialValue- the initial value of the wrapped value
 
 
- 
- 
Method Details- 
getBeanReturns theObjectthat contains this property. If this property is not contained in anObject,nullis returned.- Returns:
- the containing Objectornull
 
- 
getNameReturns the name of this property. If the property does not have a name, this method returns an emptyString.- Returns:
- the name or an empty String
 
 
-