waba.ui
Class Event

waba.lang.Object
  |
  +--waba.ui.Event
Direct Known Subclasses:
ControlEvent, KeyEvent, PenEvent

public class Event
extends Object

Event is the base class for all events.


Field Summary
 Object target
          The target of the event.
 int timeStamp
          The event's timestamp.
 int type
          The type of event.
 
Constructor Summary
Event()
           
 
Methods inherited from class waba.lang.Object
toString
 

Field Detail

type

public int type
The type of event.

target

public Object target
The target of the event. For user-interface events, this is the control the event is associated with.

timeStamp

public int timeStamp
The event's timestamp.
See Also:
Vm.getTimeStamp()
Constructor Detail

Event

public Event()