| |
|
| java.lang.Object java.lang.Thread java.awt.EventDispatchThread
EventDispatchThread | class EventDispatchThread extends Thread (Code) | | EventDispatchThread is a package-private AWT class which takes
events off the EventQueue and dispatches them to the appropriate
AWT components.
The Thread starts a "permanent" event pump with a call to
pumpEvents(Conditional) in its run() method. Event handlers can choose to
block this event pump at any time, but should start a new pump (not
a new EventDispatchThread) by again calling pumpEvents(Conditional). This
secondary event pump will exit automatically as soon as the Condtional
evaluate()s to false and an additional Event is pumped and dispatched.
author: Tom Ball author: Amy Fowler author: Fred Ecks author: David Mendenhall version: 1.66, 05/05/07 since: 1.1 |
pumpOneEventForFilters | boolean pumpOneEventForFilters(int id)(Code) | | |
stopDispatching | public void stopDispatching()(Code) | | |
stopDispatchingImpl | void stopDispatchingImpl(boolean wait)(Code) | | |
stopDispatchingLater | public void stopDispatchingLater()(Code) | | |
|
|
|