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 theSetelements
- 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
public class SimpleSetProperty<E> extends SetPropertyBase<E>
This class provides a full implementation of a
Property wrapping an
ObservableSet.- Since:
- JavaFX 2.1
- See Also:
SetPropertyBase
-
Property Summary
-
Constructor Summary
Constructors Constructor Description SimpleSetProperty()The 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 Summary
Methods inherited from class javafx.beans.property.SetPropertyBase
addListener, addListener, addListener, bind, emptyProperty, fireValueChangedEvent, fireValueChangedEvent, get, invalidated, isBound, removeListener, removeListener, removeListener, set, sizeProperty, toString, unbindMethods inherited from class javafx.beans.property.SetProperty
bindBidirectional, setValue, unbindBidirectionalMethods inherited from class javafx.beans.property.ReadOnlySetProperty
bindContent, bindContentBidirectional, equals, hashCode, unbindContent, unbindContentBidirectionalMethods 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, toArrayMethods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Constructor Details
-
SimpleSetProperty
public SimpleSetProperty()The constructor ofSimpleSetProperty -
SimpleSetProperty
The constructor ofSimpleSetProperty- Parameters:
initialValue- the initial value of the wrapped value
-
SimpleSetProperty
The constructor ofSimpleSetProperty- Parameters:
bean- the bean of thisSetPropertyname- the name of thisSetProperty
-
SimpleSetProperty
The constructor ofSimpleSetProperty- Parameters:
bean- the bean of thisSetPropertyname- the name of thisSetPropertyinitialValue- the initial value of the wrapped value
-
-
Method Details
-
getBean
Returns theObjectthat contains this property. If this property is not contained in anObject,nullis returned.- Returns:
- the containing
Objectornull
-
getName
Returns 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
-