Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "EDT:Declaring widgets"

Line 3: Line 3:
 
= Create a Handler type of stereotype RUIHandler =
 
= Create a Handler type of stereotype RUIHandler =
  
<script lang="java">
+
<source lang="java">
  
</script>
+
</source>
  
 
= Declare the widgets and customize them =
 
= Declare the widgets and customize them =
  
<script lang="java">
+
<source lang="java">
  
</script>
+
</source>
  
 
= Display a given widget =
 
= Display a given widget =
  
<script lang="java">
+
<source lang="java">
  
</script>
+
</source>
  
 
= Assign and code event handlers =
 
= Assign and code event handlers =
  
 +
<source lang="java">
 +
 +
</source>
 +
 +
= Write initialization code in the on-construction function =
 +
 +
<source lang="java">
 +
 +
</source>
  
  

Revision as of 15:52, 15 February 2012

The next sections outline a way to develop a Rich UI application. For background information, see Web technology for EGL Rich UI.

Create a Handler type of stereotype RUIHandler

 

Declare the widgets and customize them

 

Display a given widget

 

Assign and code event handlers

 

Write initialization code in the on-construction function

 





Code snippets main page

Back to the top