Class SimpleSetPropertyEx<E>
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>
org.eclipse.gef.common.beans.property.SimpleSetPropertyEx<E>
- Type Parameters:
E- The element type of theSimpleSetProperty.
- 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>
A replacement for
SimpleSetProperty to fix the following JavaFX
issue:
- Change notifications are fired even when the observed value did not change.(https://bugs.openjdk.java.net/browse/JDK-8089169)
-
Property Summary
Properties inherited from class javafx.beans.property.SetPropertyBase
empty, size -
Constructor Summary
ConstructorsConstructorDescriptionCreates a new unnamedSimpleSetPropertyEx.SimpleSetPropertyEx(Object bean, String name) Constructs a newSimpleSetPropertyExfor the given bean and with the given name.SimpleSetPropertyEx(Object bean, String name, ObservableSet<E> initialValue) Constructs a newSimpleSetPropertyExfor the given bean and with the given name and initial value.SimpleSetPropertyEx(ObservableSet<E> initialValue) Constructs a new unnamedSimpleSetPropertyExthat is not related to a bean, with the given initial value. -
Method Summary
Modifier and TypeMethodDescriptionvoidaddListener(InvalidationListener listener) voidaddListener(ChangeListener<? super ObservableSet<E>> listener) voidaddListener(SetChangeListener<? super E> listener) protected voidprotected voidfireValueChangedEvent(SetChangeListener.Change<? extends E> change) inthashCode()voidremoveListener(InvalidationListener listener) voidremoveListener(ChangeListener<? super ObservableSet<E>> listener) voidremoveListener(SetChangeListener<? super E> listener) Methods inherited from class javafx.beans.property.SimpleSetProperty
getBean, getNameMethods inherited from class javafx.beans.property.SetPropertyBase
bind, emptyProperty, get, invalidated, isBound, set, sizeProperty, toString, unbindMethods inherited from class javafx.beans.property.SetProperty
bindBidirectional, setValue, unbindBidirectionalMethods inherited from class javafx.beans.property.ReadOnlySetProperty
bindContent, bindContentBidirectional, equals, 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, waitMethods inherited from interface java.util.Collection
parallelStream, removeIf, stream, toArrayMethods inherited from interface javafx.beans.value.ObservableValue
getValueMethods inherited from interface java.util.Set
add, addAll, clear, contains, containsAll, equals, isEmpty, iterator, remove, removeAll, retainAll, size, spliterator, toArray, toArrayMethods inherited from interface javafx.beans.value.WritableValue
getValue
-
Constructor Details
-
SimpleSetPropertyEx
public SimpleSetPropertyEx()Creates a new unnamedSimpleSetPropertyEx. -
SimpleSetPropertyEx
Constructs a newSimpleSetPropertyExfor the given bean and with the given name.- Parameters:
bean- The bean this property is related to.name- The name of the property.
-
SimpleSetPropertyEx
Constructs a newSimpleSetPropertyExfor 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
-
SimpleSetPropertyEx
Constructs a new unnamedSimpleSetPropertyExthat is not related to a bean, with the given initial value.- Parameters:
initialValue- The initial value of the property
-
-
Method Details
-
addListener
- Specified by:
addListenerin interfaceObservableValue<E>- Overrides:
addListenerin classSetPropertyBase<E>
-
addListener
- Specified by:
addListenerin interfaceObservable- Overrides:
addListenerin classSetPropertyBase<E>
-
addListener
- Specified by:
addListenerin interfaceObservableSet<E>- Overrides:
addListenerin classSetPropertyBase<E>
-
fireValueChangedEvent
protected void fireValueChangedEvent()- Overrides:
fireValueChangedEventin classSetPropertyBase<E>
-
fireValueChangedEvent
- Overrides:
fireValueChangedEventin classSetPropertyBase<E>
-
hashCode
public int hashCode()- Specified by:
hashCodein interfaceCollection<E>- Specified by:
hashCodein interfaceSet<E>- Overrides:
hashCodein classReadOnlySetProperty<E>
-
removeListener
- Specified by:
removeListenerin interfaceObservableValue<E>- Overrides:
removeListenerin classSetPropertyBase<E>
-
removeListener
- Specified by:
removeListenerin interfaceObservable- Overrides:
removeListenerin classSetPropertyBase<E>
-
removeListener
- Specified by:
removeListenerin interfaceObservableSet<E>- Overrides:
removeListenerin classSetPropertyBase<E>
-