Uses of Class
org.eclipse.core.databinding.DataBindingContext
-
Packages that use DataBindingContext Package Description org.eclipse.core.databinding Provides classes for binding observable objects, for example UI widgets and model objects.org.eclipse.jface.databinding.dialog org.eclipse.jface.databinding.preference org.eclipse.jface.databinding.viewers Provides classes that can be used to observe the JFace Viewer framework.org.eclipse.jface.databinding.wizard Provides classes that bridge between data binding and the JFace Wizard framework. -
-
Uses of DataBindingContext in org.eclipse.core.databinding
Fields in org.eclipse.core.databinding declared as DataBindingContext Modifier and Type Field Description protected DataBindingContext
Binding. context
Methods in org.eclipse.core.databinding that return types with arguments of type DataBindingContext Modifier and Type Method Description static IListProperty<DataBindingContext,Binding>
BindingProperties. bindings()
Returns anIListProperty
for observing the bindings of aDataBindingContext
.static IListProperty<DataBindingContext,ValidationStatusProvider>
BindingProperties. validationStatusProviders()
Returns anIListProperty
for observing the validation status providers of aDataBindingContext
.Methods in org.eclipse.core.databinding with parameters of type DataBindingContext Modifier and Type Method Description void
ObservablesManager. addObservablesFromContext(DataBindingContext context, boolean trackTargets, boolean trackModels)
Adds the given data binding context's target and/or model observables to this manager.void
Binding. init(DataBindingContext context)
Initializes this binding with the given context and adds it to the list of bindings of the context.Constructors in org.eclipse.core.databinding with parameters of type DataBindingContext Constructor Description AggregateValidationStatus(DataBindingContext dbc, int strategy)
Creates a new aggregate validation status observable for the given data binding context. -
Uses of DataBindingContext in org.eclipse.jface.databinding.dialog
Methods in org.eclipse.jface.databinding.dialog with parameters of type DataBindingContext Modifier and Type Method Description static DialogPageSupport
DialogPageSupport. create(DialogPage dialogPage, DataBindingContext dbc)
Connect the validation result from the given data binding context to the given dialog page.static TitleAreaDialogSupport
TitleAreaDialogSupport. create(TitleAreaDialog dialog, DataBindingContext dbc)
Connect the validation result from the given data binding context to the given TitleAreaDialog.Constructors in org.eclipse.jface.databinding.dialog with parameters of type DataBindingContext Constructor Description DialogPageSupport(DialogPage dialogPage, DataBindingContext dbc)
-
Uses of DataBindingContext in org.eclipse.jface.databinding.preference
Methods in org.eclipse.jface.databinding.preference with parameters of type DataBindingContext Modifier and Type Method Description static PreferencePageSupport
PreferencePageSupport. create(PreferencePage preferencePage, DataBindingContext dbc)
Connect the validation result from the given data binding context to the given preference page. -
Uses of DataBindingContext in org.eclipse.jface.databinding.viewers
Methods in org.eclipse.jface.databinding.viewers with parameters of type DataBindingContext Modifier and Type Method Description static <E,M,T>
EditingSupportObservableValueEditingSupport. create(ColumnViewer viewer, DataBindingContext dbc, CellEditor cellEditor, IValueProperty<? super CellEditor,T> cellEditorProperty, IValueProperty<E,M> elementProperty)
Returns an ObservableValueEditingSupport instance which binds the given cell editor property to the given element property.Constructors in org.eclipse.jface.databinding.viewers with parameters of type DataBindingContext Constructor Description ObservableValueEditingSupport(ColumnViewer viewer, DataBindingContext dbc)
Constructs a new instance with the providedviewer
anddbc
. -
Uses of DataBindingContext in org.eclipse.jface.databinding.wizard
Methods in org.eclipse.jface.databinding.wizard with parameters of type DataBindingContext Modifier and Type Method Description static WizardPageSupport
WizardPageSupport. create(WizardPage wizardPage, DataBindingContext dbc)
Connect the validation result from the given data binding context to the given wizard page.
-