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.
|
Modifier and Type | Class and Description |
---|---|
class |
ListBinding |
class |
SetBinding |
Modifier and Type | Method and Description |
---|---|
Binding |
DataBindingContext.bindList(IObservableList targetObservableList,
IObservableList modelObservableList)
Creates a
Binding to synchronize the values of two
observable lists . |
Binding |
DataBindingContext.bindList(IObservableList targetObservableList,
IObservableList modelObservableList,
UpdateListStrategy targetToModel,
UpdateListStrategy modelToTarget)
Creates a
Binding to synchronize the values of two
observable lists . |
Binding |
DataBindingContext.bindSet(IObservableSet targetObservableSet,
IObservableSet modelObservableSet)
Creates a
Binding to synchronize the values of two
observable sets . |
Binding |
DataBindingContext.bindSet(IObservableSet targetObservableSet,
IObservableSet modelObservableSet,
UpdateSetStrategy targetToModel,
UpdateSetStrategy modelToTarget)
Creates a
Binding to synchronize the values of two
observable sets . |
Binding |
DataBindingContext.bindValue(IObservableValue targetObservableValue,
IObservableValue modelObservableValue)
Creates a
Binding to synchronize the values of two
observable values . |
Binding |
DataBindingContext.bindValue(IObservableValue targetObservableValue,
IObservableValue modelObservableValue,
UpdateValueStrategy targetToModel,
UpdateValueStrategy modelToTarget)
Creates a
Binding to synchronize the values of two
observable values . |
Modifier and Type | Method and Description |
---|---|
void |
DataBindingContext.addBinding(Binding binding)
Adds the given binding to this data binding context.
|
boolean |
DataBindingContext.removeBinding(Binding binding)
Removes the given binding.
|
Modifier and Type | Method and Description |
---|---|
protected Binding |
ObservableValueEditingSupport.createBinding(IObservableValue target,
IObservableValue model)
Creates a new binding for the provided
target and
model . |
Copyright (c) 2000, 2014 Eclipse Contributors and others. All rights reserved.Guidelines for using Eclipse APIs.