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.


Fields inherited from class waba.ui.MainWindow
defaultFont
 
Fields inherited from class waba.ui.Window
_controlEvent, _keyEvent, _penEvent
 
Fields inherited from class waba.ui.Container
children, tail
 
Fields inherited from class waba.ui.Control
height, next, parent, prev, width, x, y
 
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.
 
Methods inherited from class waba.ui.MainWindow
_onTimerTick, _setTimerInterval, addTimer, exit, getFontMetrics, getMainWindow, onExit, onStart, removeTimer
 
Methods inherited from class waba.ui.Window
_doPaint, _postEvent, damageRect, getFocus, setFocus
 
Methods inherited from class waba.ui.Container
add, findChild, paintChildren, remove
 
Methods inherited from class waba.ui.Control
addTimer, contains, createGraphics, getNext, getParent, getRect, postEvent, repaint, setRect
 
Methods inherited from class waba.lang.Object
toString
 

Constructor Detail

Welcome

public Welcome()
Constructs the welcome application.
Method Detail

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