waba.ui
Class Welcome
waba.lang.Object
|
+--waba.ui.Control
|
+--waba.ui.Container
|
+--waba.ui.Window
|
+--waba.ui.MainWindow
|
+--waba.ui.Welcome
- public class Welcome
- extends MainWindow
Welcome is the welcome application.
This is the default program run when none is specified or when the VM needs
a program to run to show that the VM is functioning on a device.
Constructor Summary |
Welcome()
Constructs the welcome application. |
Method Summary |
void |
onEvent(Event event)
Called by the system to pass events to the application. |
void |
onPaint(Graphics g)
Called by the system to draw the application. |
Welcome
public Welcome()
- Constructs the welcome application.
onEvent
public void onEvent(Event event)
- Called by the system to pass events to the application.
- Overrides:
- onEvent in class Control
- Tags copied from class: Control
- Parameters:
event
- the event to process- See Also:
Event
,
KeyEvent
,
PenEvent
onPaint
public void onPaint(Graphics g)
- Called by the system to draw the application.
- Overrides:
- onPaint in class Control
- Tags copied from class: Control
- Parameters:
g
- the graphics object for drawing- See Also:
Graphics