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
Properties declared in class javafx.beans.binding.SetExpression
empty, size -
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 declared in class javafx.beans.property.SetPropertyBase
fireValueChangedEvent, fireValueChangedEvent, invalidated, toStringMethods declared in class javafx.beans.property.ReadOnlySetProperty
bindContent, bindContentBidirectional, hashCode, unbindContent, unbindContentBidirectionalMethods declared in class javafx.beans.binding.SetExpression
asString, emptyProperty, getSize, isEqualTo, isNotEqualTo, isNotNull, isNull, setExpression, sizePropertyMethods declared in class java.lang.Object
clone, equals, finalize, getClass, notify, notifyAll, wait, wait, waitMethods declared in interface java.util.Collection
parallelStream, removeIf, stream, toArrayMethods declared in interface javafx.beans.Observable
addListener, removeListenerMethods declared in interface javafx.beans.value.ObservableObjectValue
getMethods declared in interface javafx.collections.ObservableSet
addListener, removeListenerMethods declared in interface javafx.beans.value.ObservableValue
addListener, getValue, removeListenerMethods declared in interface javafx.beans.property.Property
bind, bindBidirectional, isBound, unbind, unbindBidirectionalMethods declared in interface javafx.beans.property.ReadOnlyProperty
getBean, getNameMethods declared in interface java.util.Set
add, addAll, clear, contains, containsAll, equals, hashCode, isEmpty, iterator, remove, removeAll, retainAll, size, spliterator, toArray, toArrayMethods declared in interface javafx.beans.value.WritableObjectValue
get, setMethods declared in interface javafx.beans.value.WritableValue
getValue, setValue
-
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
-