Eventpublic class Event extends Object All events handled by this package must extend this class. |
Fields Summary |
---|
int | typeThe type of this event as an integer. Types are defined midpEvents.h. | Event | nextLinks events in the queue. |
Constructors Summary |
---|
public Event(int eventType)Construct an event.
type = eventType;
|
Methods Summary |
---|
public int | getType()Gets the type ID of this event.
return type;
|
|