Questions tagged [eclipse-databinding]

Refers to JFace Data Binding which is a multi-threaded set of abstractions that allow for automated validation and synchronization of values between objects. This is commonly used for, but not limited to, the binding of user interface components to model attributes. The core concepts behind the project are Observables and Bindings.

Definition

JFace Data Binding is a multi-threaded set of abstractions that allow for automated validation and synchronization of values between objects. This is commonly used for, but not limited to, the binding of user interface components to model attributes. The core concepts behind the project are Observables and Bindings. We provide IObservable implementations for SWT, JFace, and JavaBeans but the core is void of references to these in anticipation of implementations for other projects (e.g. EMF, Swing, etc.).

References

JFace Data Binding Wiki

34 questions
0
votes
1 answer

TableViewer with EMF databinding and cell editing - close but not quite

I am going through Tom Shindl's instructions on how to add EMF databinding on to tables, here is my code for the data binding: protected DataBindingContext initDataBindings() { //going to use this person instead Person p =…
0
votes
1 answer

Is there a difference between chaining EMFEditProperties methods vs. using FeaturePath.fromList?

Is there any difference between EMFEditProperties.list( editingDomain, FeaturePath.fromList(DemoPackage.Literals.TRANSPORT_DETAILS__SELECTED_TRANSPORT, DemoPackage.Literals.TRANSPORT__DEPARTURES)) and EMFEditProperties …
Tobias Schulte
  • 3,765
  • 1
  • 29
  • 33
0
votes
1 answer

ViewersObservables.observeInput(Viewer) example?

Can anybody point me to an example which is dealing with Databinding of jface viewers with the ViewersObservables.observeInput(Viewer)? Am looking to update the contents of a viewer (the items in the comboviewer) with some dynamic content (new set…
Jack Clouseau
  • 81
  • 1
  • 11
0
votes
2 answers

Comboviewer Databinding with dynamic combo items

I have a comboviewer, and i need to have the databinding on it, so that the combo selection is automatically updated in the Model. Also i need to add the combo items dynamically (to the exisitng combo items). With databinding how can i acheive…
Jack Clouseau
  • 81
  • 1
  • 11
1 2
3