Uses of Class
org.eclipse.core.databinding.UpdateListStrategy
-
Packages that use UpdateListStrategy Package Description org.eclipse.core.databinding Provides classes for binding observable objects, for example UI widgets and model objects. -
-
Uses of UpdateListStrategy in org.eclipse.core.databinding
Methods in org.eclipse.core.databinding that return UpdateListStrategy Modifier and Type Method Description protected <M,T>
UpdateListStrategy<M,T>DataBindingContext. createModelToTargetUpdateListStrategy(IObservableList<M> modelObservableList, IObservableList<T> targetObservableList)
protected <T,M>
UpdateListStrategy<T,M>DataBindingContext. createTargetToModelUpdateListStrategy(IObservableList<T> targetObservableList, IObservableList<M> modelObservableList)
UpdateListStrategy<S,D>
UpdateListStrategy. setConverter(IConverter<? super S,? extends D> converter)
Sets the converter to be invoked when converting added elements from the source element type to the destination element type.Methods in org.eclipse.core.databinding with parameters of type UpdateListStrategy Modifier and Type Method Description <T,M>
BindingDataBindingContext. bindList(IObservableList<T> targetObservableList, IObservableList<M> modelObservableList, UpdateListStrategy<? super T,? extends M> targetToModel, UpdateListStrategy<? super M,? extends T> modelToTarget)
Creates aBinding
to synchronize the values of twoobservable lists
.Constructors in org.eclipse.core.databinding with parameters of type UpdateListStrategy Constructor Description ListBinding(IObservableList<T> target, IObservableList<M> model, UpdateListStrategy<? super T,? extends M> targetToModelStrategy, UpdateListStrategy<? super M,? extends T> modelToTargetStrategy)
-