Java in a Nutshell Online Quick Reference for Java 1.1
Availability: JDK 1.1
public class EventQueue extends Object {
   // Public Constructor
      public EventQueue();
   // Public Instance Methods
      public synchronized AWTEvent getNextEvent() throws InterruptedException;
      public synchronized AWTEvent peekEvent();
      public synchronized AWTEvent peekEvent(int id);
      public synchronized void postEvent(AWTEvent theEvent);
}