Home | History | Annotate | Download | only in awt

Lines Matching refs:EventQueue

29  * The EventQueue class manages events. It is a platform-independent class that
35 public class EventQueue {
75 * Returns true if the calling thread is the current AWT EventQueue's
78 * @return true, if the calling thread is the current AWT EventQueue's
91 * on the EventQueue.
106 * on the EventQueue.
140 private static EventQueue getSystemEventQueue() {
150 * the EventQueue associated with the calling thread.
157 EventQueue eq = getSystemEventQueue();
171 * Returns the the currently dispatched event by the EventQueue associated
178 EventQueue eq = getSystemEventQueue();
194 public EventQueue() {
204 EventQueue(Toolkit t) {
209 * Posts a event to the EventQueue.
220 * Returns an event from the EventQueue and removes it from this queue.
240 * Returns the first event of the EventQueue (without removing it from the
243 * @return the the first AWT event of the EventQueue.
250 * Returns the first event of the EventQueue with the specified ID (without
255 * @return the first event of the EventQueue with the specified ID.
262 * Replaces the existing EventQueue with the specified EventQueue. Any
263 * pending events are transferred to the new EventQueue.
268 public void push(EventQueue newEventQueue) {
273 * Stops dispatching events using this EventQueue. Any pending events are
274 * transferred to the previous EventQueue.
277 * is thrown if no previous push was made on this EventQueue.