Package | Description |
---|---|
org.eclipse.core.databinding |
Provides classes for binding observable objects, for example UI widgets and model objects.
|
Modifier and Type | Method and 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.
|
Modifier and Type | Method and Description |
---|---|
<T,M> Binding |
DataBindingContext.bindList(IObservableList<T> targetObservableList,
IObservableList<M> modelObservableList,
UpdateListStrategy<? super T,? extends M> targetToModel,
UpdateListStrategy<? super M,? extends T> modelToTarget)
Creates a
Binding to synchronize the values of two
observable lists . |
<T,M> Binding |
DataBindingContext.bindList(IObservableList<T> targetObservableList,
IObservableList<M> modelObservableList,
UpdateListStrategy<? super T,? extends M> targetToModel,
UpdateListStrategy<? super M,? extends T> modelToTarget)
Creates a
Binding to synchronize the values of two
observable lists . |
Constructor and Description |
---|
ListBinding(IObservableList<T> target,
IObservableList<M> model,
UpdateListStrategy<? super T,? extends M> targetToModelStrategy,
UpdateListStrategy<? super M,? extends T> modelToTargetStrategy) |
ListBinding(IObservableList<T> target,
IObservableList<M> model,
UpdateListStrategy<? super T,? extends M> targetToModelStrategy,
UpdateListStrategy<? super M,? extends T> modelToTargetStrategy) |
Copyright (c) 2000, 2018 Eclipse Contributors and others. All rights reserved.Guidelines for using Eclipse APIs.