Uses of Interface
org.eclipse.gef.common.beans.value.ObservableMultisetValue
-
Packages that use ObservableMultisetValue Package Description org.eclipse.gef.common.beans.binding This package augments the JavaFX binding API by adding support related toSetMultimap
andMultiset
.org.eclipse.gef.common.beans.property This package augments the property API of JavaFX by adding support related toSetMultimap
andMultiset
. -
-
Uses of ObservableMultisetValue in org.eclipse.gef.common.beans.binding
Classes in org.eclipse.gef.common.beans.binding that implement ObservableMultisetValue Modifier and Type Class Description class
MultisetBinding<E>
An abstract base class that provides functionality needed to realize aBinding
on anObservableMultiset
.class
MultisetExpression<E>
ASetMultimapExpression
is aObservableMultisetValue
plus additional convenience methods to generate bindings.Methods in org.eclipse.gef.common.beans.binding with parameters of type ObservableMultisetValue Modifier and Type Method Description static <E> MultisetExpression<E>
MultisetExpression. multisetExpression(ObservableMultisetValue<E> multisetValue)
Returns aMultisetExpression
that wraps anObservableMultisetValue
.Constructors in org.eclipse.gef.common.beans.binding with parameters of type ObservableMultisetValue Constructor Description MultisetExpressionHelper(ObservableMultisetValue<E> observableValue)
Constructs a newMultisetExpressionHelper
for the given sourceObservableMultisetValue
. -
Uses of ObservableMultisetValue in org.eclipse.gef.common.beans.property
Classes in org.eclipse.gef.common.beans.property that implement ObservableMultisetValue Modifier and Type Class Description class
MultisetProperty<E>
Abstract base class defining contract for aProperty
wrapping aObservableMultiset
.class
MultisetPropertyBase<E>
Abstract base class for implementing aProperty
wrapping anObservableMultiset
.class
ReadOnlyMultisetProperty<E>
Abstract base class defining contract for a read-onlyProperty
wrapping anObservableMultiset
.class
ReadOnlyMultisetPropertyBase<E>
Abstract base class for implementing a read-onlyProperty
wrapping anObservableMultiset
.class
ReadOnlyMultisetWrapper<E>
AReadOnlyMultisetWrapper
is a writableProperty
wrapping anObservableMultiset
, which provides an additional read-onlyProperty
(based on a concrete, non-exposed implementation ofReadOnlyMultisetProperty
), whose value is synchronized with the value of thisReadOnlyMapWrapper
.class
SimpleMultisetProperty<E>
A concrete implementation of aProperty
wrapping anObservableMultiset
.
-