Uses of Class
org.eclipse.core.databinding.Binding
-
Packages that use Binding Package Description org.eclipse.core.databinding Provides classes for binding observable objects, for example UI widgets and model objects.org.eclipse.jface.databinding.viewers Provides classes that can be used to observe the JFace Viewer framework. -
-
Uses of Binding in org.eclipse.core.databinding
Subclasses of Binding in org.eclipse.core.databinding Modifier and Type Class Description classListBinding<M,T>classSetBinding<M,T>Methods in org.eclipse.core.databinding that return Binding Modifier and Type Method Description <T,M>
BindingDataBindingContext. bindList(IObservableList<T> targetObservableList, IObservableList<M> modelObservableList)Creates aBindingto synchronize the values of twoobservable lists.<T,M>
BindingDataBindingContext. bindList(IObservableList<T> targetObservableList, IObservableList<M> modelObservableList, UpdateListStrategy<? super T,? extends M> targetToModel, UpdateListStrategy<? super M,? extends T> modelToTarget)Creates aBindingto synchronize the values of twoobservable lists.<T,M>
BindingDataBindingContext. bindSet(IObservableSet<T> targetObservableSet, IObservableSet<M> modelObservableSet)Creates aBindingto synchronize the values of twoobservable sets.<T,M>
BindingDataBindingContext. bindSet(IObservableSet<T> targetObservableSet, IObservableSet<M> modelObservableSet, UpdateSetStrategy<? super T,? extends M> targetToModel, UpdateSetStrategy<? super M,? extends T> modelToTarget)Creates aBindingto synchronize the values of twoobservable sets.<T,M>
BindingDataBindingContext. bindValue(IObservableValue<T> targetObservableValue, IObservableValue<M> modelObservableValue)Creates aBindingto synchronize the values of twoobservable values.<T,M>
BindingDataBindingContext. bindValue(IObservableValue<T> targetObservableValue, IObservableValue<M> modelObservableValue, UpdateValueStrategy<? super T,? extends M> targetToModel, UpdateValueStrategy<? super M,? extends T> modelToTarget)Creates aBindingto synchronize the values of twoobservable values.Methods in org.eclipse.core.databinding that return types with arguments of type Binding Modifier and Type Method Description static IListProperty<DataBindingContext,Binding>BindingProperties. bindings()Returns anIListPropertyfor observing the bindings of aDataBindingContext.IObservableList<Binding>DataBindingContext. getBindings()Returns an unmodifiableIObservableListof all bindings in order by time of addition.IObservableMap<Binding,IStatus>DataBindingContext. getValidationStatusMap()Deprecated.as of 1.1, please useDataBindingContext.getValidationStatusProviders()static IValueProperty<Binding,IObservable>BindingProperties. model()Returns anIValuePropertyfor observing the model of aBinding.static IValueProperty<Binding,IObservable>BindingProperties. target()Returns anIValuePropertyfor observing the target of aBinding.Methods in org.eclipse.core.databinding with parameters of type Binding Modifier and Type Method Description voidDataBindingContext. addBinding(Binding binding)Adds the given binding to this data binding context.booleanDataBindingContext. removeBinding(Binding binding)Removes the given binding. -
Uses of Binding in org.eclipse.jface.databinding.viewers
Methods in org.eclipse.jface.databinding.viewers that return Binding Modifier and Type Method Description protected BindingObservableValueEditingSupport. createBinding(IObservableValue<T> target, IObservableValue<M> model)Creates a new binding for the providedtargetandmodel.
-