Class SimpleMultisetProperty<E>
- java.lang.Object
-
- org.eclipse.gef.common.beans.binding.MultisetExpression<E>
-
- org.eclipse.gef.common.beans.property.ReadOnlyMultisetProperty<E>
-
- org.eclipse.gef.common.beans.property.MultisetProperty<E>
-
- org.eclipse.gef.common.beans.property.MultisetPropertyBase<E>
-
- org.eclipse.gef.common.beans.property.SimpleMultisetProperty<E>
-
- Type Parameters:
E
- The element type of theObservableMultiset
.
- All Implemented Interfaces:
Multiset<E>
,java.lang.Iterable<E>
,java.util.Collection<E>
,javafx.beans.Observable
,javafx.beans.property.Property<ObservableMultiset<E>>
,javafx.beans.property.ReadOnlyProperty<ObservableMultiset<E>>
,javafx.beans.value.ObservableObjectValue<ObservableMultiset<E>>
,javafx.beans.value.ObservableValue<ObservableMultiset<E>>
,javafx.beans.value.WritableObjectValue<ObservableMultiset<E>>
,javafx.beans.value.WritableValue<ObservableMultiset<E>>
,ObservableMultisetValue<E>
,WritableMultisetValue<E>
,ObservableMultiset<E>
- Direct Known Subclasses:
ReadOnlyMultisetWrapper
public class SimpleMultisetProperty<E> extends MultisetPropertyBase<E>
A concrete implementation of aProperty
wrapping anObservableMultiset
.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface com.google.common.collect.Multiset
Multiset.Entry<E extends java.lang.Object>
-
-
Constructor Summary
Constructors Constructor Description SimpleMultisetProperty()
Constructs a new unnamedSimpleMultisetProperty
.SimpleMultisetProperty(java.lang.Object bean, java.lang.String name)
Constructs a newSimpleMultisetProperty
for the given bean and with the given name.SimpleMultisetProperty(java.lang.Object bean, java.lang.String name, ObservableMultiset<E> initialValue)
Constructs a newSimpleMultisetProperty
for the given bean and with the given name and initial value.SimpleMultisetProperty(ObservableMultiset<E> initialValue)
Constructs a new unnamedSimpleMultisetProperty
that is not related to a bean, with the given initial value.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Object
getBean()
java.lang.String
getName()
-
Methods inherited from class org.eclipse.gef.common.beans.property.MultisetPropertyBase
addListener, addListener, addListener, appendValueToString, bind, emptyProperty, fireValueChangedEvent, fireValueChangedEvent, get, invalidated, isBound, removeListener, removeListener, removeListener, set, sizeProperty, unbind
-
Methods inherited from class org.eclipse.gef.common.beans.property.MultisetProperty
bindBidirectional, setValue, unbindBidirectional
-
Methods inherited from class org.eclipse.gef.common.beans.property.ReadOnlyMultisetProperty
bindContent, bindContentBidirectional, equals, hashCode, toString, unbindContent, unbindContentBidirectional
-
Methods inherited from class org.eclipse.gef.common.beans.binding.MultisetExpression
add, add, addAll, asString, clear, contains, containsAll, count, elementSet, entrySet, getValue, isEmpty, isEqualTo, isNotEqualTo, isNotNull, isNull, iterator, multisetExpression, remove, remove, removeAll, replaceAll, retainAll, setCount, setCount, size, toArray, toArray
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.util.Collection
addAll, clear, isEmpty, parallelStream, removeIf, stream, toArray, toArray, toArray
-
Methods inherited from interface com.google.common.collect.Multiset
add, add, contains, containsAll, count, elementSet, entrySet, equals, forEach, forEachEntry, hashCode, iterator, remove, remove, removeAll, retainAll, setCount, setCount, size, spliterator, toString
-
Methods inherited from interface org.eclipse.gef.common.collections.ObservableMultiset
replaceAll
-
-
-
-
Constructor Detail
-
SimpleMultisetProperty
public SimpleMultisetProperty()
Constructs a new unnamedSimpleMultisetProperty
.
-
SimpleMultisetProperty
public SimpleMultisetProperty(java.lang.Object bean, java.lang.String name)
Constructs a newSimpleMultisetProperty
for the given bean and with the given name.- Parameters:
bean
- The bean this property is related to.name
- The name of the property.
-
SimpleMultisetProperty
public SimpleMultisetProperty(java.lang.Object bean, java.lang.String name, ObservableMultiset<E> initialValue)
Constructs a newSimpleMultisetProperty
for the given bean and with the given name and initial value.- Parameters:
bean
- The bean this property is related to.name
- The name of the property.initialValue
- The initial value of the property
-
SimpleMultisetProperty
public SimpleMultisetProperty(ObservableMultiset<E> initialValue)
Constructs a new unnamedSimpleMultisetProperty
that is not related to a bean, with the given initial value.- Parameters:
initialValue
- The initial value of the property
-
-