|
Tour page 1:
Create your GUI in XML next
GUI-components in
XML JEasy library
|
|
JAVA 2 Swing components |
|
Swing is SUN's library for building GUI's in Java.
A set of components like JFrame, JMenu, JPanel, JTextfield configured by
properties are added to each other and build the GUI.
|
|
|
|
|
|
|
|
JE-objects |
|
To each J... there is an JE... (JMenu -> JEMenu)
component.
The JE-object reads the properties out of XML-File and creates the
J-object.
|
|
|
|
|
|
|
|
XML properties file |
|
The information about the
hierarchy (JMenu is an element of JMenubar) are part of the XML-file. So
the JE-objects are able to add themselves together to the complete GUI.
|
|
|