EventTable

Instances of this class implement a simple look up mechanism that maps an event type to a listener. Multiple listeners for the same event type are supported.

class EventTable {
int[] types;
Listener[] listeners;
int level;
int GROW_SIZE;
}

Meta