Uses of Class
org.eclipse.core.databinding.observable.set.SetDiff
-
Packages that use SetDiff Package Description org.eclipse.core.databinding.observable Provides the core APIs for observing changes in objects.org.eclipse.core.databinding.observable.set Provides classes that can be used to observe changes in sets.org.eclipse.core.databinding.property.set -
-
Uses of SetDiff in org.eclipse.core.databinding.observable
Methods in org.eclipse.core.databinding.observable that return SetDiff Modifier and Type Method Description static <E> SetDiff<E>Diffs. computeLazySetDiff(Set<? extends E> oldSet, Set<? extends E> newSet)Returns a lazily computedSetDiffdescribing the change between the specified old and new set states.static <E> SetDiff<E>Diffs. computeSetDiff(Set<? extends E> oldSet, Set<? extends E> newSet)Returns aSetDiffdescribing the change between the specified old and new set states.static <E> SetDiff<E>Diffs. createSetDiff(Set<? extends E> additions, Set<? extends E> removals)static <E> SetDiff<E>Diffs. unmodifiableDiff(SetDiff<? extends E> diff)Returns an unmodifiable wrapper on top of the given diff.Methods in org.eclipse.core.databinding.observable with parameters of type SetDiff Modifier and Type Method Description static <E> SetDiff<E>Diffs. unmodifiableDiff(SetDiff<? extends E> diff)Returns an unmodifiable wrapper on top of the given diff. -
Uses of SetDiff in org.eclipse.core.databinding.observable.set
Fields in org.eclipse.core.databinding.observable.set declared as SetDiff Modifier and Type Field Description SetDiff<E>SetChangeEvent. diffDescription of the change to the source observable set.Methods in org.eclipse.core.databinding.observable.set with parameters of type SetDiff Modifier and Type Method Description protected voidAbstractObservableSet. fireSetChange(SetDiff<E> diff)protected voidDecoratingObservableSet. fireSetChange(SetDiff<E> diff)protected voidObservableSet. fireSetChange(SetDiff<E> diff)Constructors in org.eclipse.core.databinding.observable.set with parameters of type SetDiff Constructor Description SetChangeEvent(IObservableSet<E> source, SetDiff<E> diff)Creates a new set change event. -
Uses of SetDiff in org.eclipse.core.databinding.property.set
Methods in org.eclipse.core.databinding.property.set with parameters of type SetDiff Modifier and Type Method Description protected abstract voidSimpleSetProperty. doSetSet(S source, Set<E> set, SetDiff<E> diff)Updates the property on the source with the specified change.protected voidDelegatingSetProperty. doUpdateSet(S source, SetDiff<E> diff)protected voidSetProperty. doUpdateSet(S source, SetDiff<E> diff)Updates the property on the source with the specified change.protected voidSimpleSetProperty. doUpdateSet(S source, SetDiff<E> diff)protected voidUnionSetProperty. doUpdateSet(S source, SetDiff<E> diff)voidSimpleSetProperty. setSet(S source, Set<E> set, SetDiff<E> diff)Updates the property on the source with the specified change.voidISetProperty. updateSet(S source, SetDiff<E> diff)Updates the property on the source with the specified change.voidSetProperty. updateSet(S source, SetDiff<E> diff)Method parameters in org.eclipse.core.databinding.property.set with type arguments of type SetDiff Modifier and Type Method Description abstract INativePropertyListener<S>SimpleSetProperty. adaptListener(ISimplePropertyListener<S,SetDiff<E>> listener)Returns a listener capable of adding or removing itself as a listener on a source object using the the source's "native" listener API.
-