Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

JFace Data Binding/DOM

< JFace Data Binding
Revision as of 18:31, 1 August 2008 by Azerr.redhat.com (Talk | contribs) (DOM binding sample)

JFace Data Binding
Home
How to Contribute
FAQ
Snippets
Concepts
Binding
Converter
Observable
Realm

Target

Work is underway to support binding to w3c DOM node. See (for the moment) TK-UI SVN - you can find two plug-in project that provides DOM-based observables :

DOM binding sample

The TestHTMLInputText DOM binding sample explains how bind this XHTML content :

<html>
  <title>DOM Bindings - HTML Input Text Sample.</title>
  <label>This sample bind :
* CharacterData of DOM Element title with Text property of SWT Shell. 
* CharacterData of DOM Element label with Text property of SWT Label. 
* Attribute value of DOM Element input with Text property of SWT Text. 
* DOM Document content with Text property of SWT Text (Area).</label>
  <input type="text" value="bla bla bla" />	
</html>

with several SWT UI widgets :

TestHTMLInputText.JPG

This screen show the result of binding between the XHTMl DOM Document and SWT UI widgets.

This sample is DOM IObservableValue implementation. It bind:

  • CharacterData of DOM Element title with Text property of SWT Shell.
  • CharacterData of DOM Element label with Text property of SWT Label.
  • Attribute value of DOM Element input with Text property of SWT Text.
  • DOM Document content with Text property of SWT Text (Area).

Back to the top