Java Platform 1.2
Beta 4

Interface java.awt.event.EventQueueListener


public abstract interface EventQueueListener
extends EventListener
The listener interface for receiving notification of events posted to the EventQueue. Unlike the other EventListeners in this package, EventQueueListeners passively observe events being posted to the queue. Most applications should never use this class; applications which might include event recorders for automated testing, and facilities such as the Java Accessibility package.

The class that is interested in monitoring EventQueue events implements this interface, and the object created with that class is registered with the EventQueue, using the EventQueue's addEventQueueListener method. When an event is posted to the EventQueue, that object's eventPosted method is invoked.

See Also:
AWTEvent

Method Summary
 void eventPosted(AWTEvent e)
          Invoked when an event is posted to an EventQueue.
 

Method Detail

eventPosted

public void eventPosted(AWTEvent e)
Invoked when an event is posted to an EventQueue.

Java Platform 1.2
Beta 4

Submit a bug or feature
Submit comments/suggestions about new javadoc look
Java is a trademark or registered trademark of Sun Microsystems, Inc. in the US and other countries.
Copyright 1993-1998 Sun Microsystems, Inc. 901 San Antonio Road,
Palo Alto, California, 94303, U.S.A. All Rights Reserved.
This documentation was generated with a post-Beta4 version of Javadoc.