- 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 theSet
elements
- All Implemented Interfaces:
Iterable<E>
,Collection<E>
,Set<E>
,Observable
,Property<E>
,ReadOnlyProperty<E>
,ObservableObjectValue<E>
,ObservableSetValue<E>
,ObservableValue<E>
,WritableObjectValue<E>
,WritableSetValue<E>
,WritableValue<E>
,ObservableSet<E>
- Direct Known Subclasses:
ReadOnlySetWrapper
public class SimpleSetProperty<E> extends SetPropertyBase<E>
This class provides a full implementation of aProperty
wrapping anObservableSet
.- Since:
- JavaFX 2.1
- See Also:
SetPropertyBase
-
-
Property Summary
-
Properties inherited from class javafx.beans.property.SetPropertyBase
empty, size
-
-
Constructor Summary
Constructors Constructor Description SimpleSetProperty()
The constructor ofSimpleSetProperty
SimpleSetProperty(Object bean, String name)
The constructor ofSimpleSetProperty
SimpleSetProperty(Object bean, String name, ObservableSet<E> initialValue)
The constructor ofSimpleSetProperty
SimpleSetProperty(ObservableSet<E> initialValue)
The constructor ofSimpleSetProperty
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Object
getBean()
Returns theObject
that contains this property.String
getName()
Returns the name of this property.-
Methods inherited from interface java.util.Collection
parallelStream, removeIf, stream
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface javafx.beans.value.ObservableValue
getValue
-
Methods inherited from class javafx.beans.property.ReadOnlySetProperty
bindContent, bindContentBidirectional, equals, hashCode, unbindContent, unbindContentBidirectional
-
Methods inherited from interface java.util.Set
add, addAll, clear, contains, containsAll, equals, hashCode, isEmpty, iterator, of, of, of, of, of, of, of, of, of, of, of, of, remove, removeAll, retainAll, size, spliterator, toArray, toArray
-
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 javafx.beans.property.SetProperty
bindBidirectional, setValue, unbindBidirectional
-
Methods inherited from class javafx.beans.property.SetPropertyBase
addListener, addListener, addListener, bind, emptyProperty, fireValueChangedEvent, fireValueChangedEvent, get, invalidated, isBound, removeListener, removeListener, removeListener, set, sizeProperty, toString, unbind
-
Methods inherited from interface javafx.beans.value.WritableValue
getValue
-
-
-
-
Constructor Detail
-
SimpleSetProperty
public SimpleSetProperty()
The constructor ofSimpleSetProperty
-
SimpleSetProperty
public SimpleSetProperty(ObservableSet<E> initialValue)
The constructor ofSimpleSetProperty
- Parameters:
initialValue
- the initial value of the wrapped value
-
SimpleSetProperty
public SimpleSetProperty(Object bean, String name)
The constructor ofSimpleSetProperty
- Parameters:
bean
- the bean of thisSetProperty
name
- the name of thisSetProperty
-
SimpleSetProperty
public SimpleSetProperty(Object bean, String name, ObservableSet<E> initialValue)
The constructor ofSimpleSetProperty
- Parameters:
bean
- the bean of thisSetProperty
name
- the name of thisSetProperty
initialValue
- the initial value of the wrapped value
-
-
Method Detail
-
getBean
public Object getBean()
Returns theObject
that contains this property. If this property is not contained in anObject
,null
is returned.- Returns:
- the containing
Object
ornull
-
getName
public String 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
-
-