jdk/src/java.desktop/share/classes/java/awt/EventDispatchThread.java
changeset 26749 b6598aa90114
parent 25859 3317bb8137f4
child 29922 7b9c1e1532cf
equal deleted inserted replaced
26748:fba66a2e8961 26749:b6598aa90114
    41  *
    41  *
    42  * The Thread starts a "permanent" event pump with a call to
    42  * The Thread starts a "permanent" event pump with a call to
    43  * pumpEvents(Conditional) in its run() method. Event handlers can choose to
    43  * pumpEvents(Conditional) in its run() method. Event handlers can choose to
    44  * block this event pump at any time, but should start a new pump (<b>not</b>
    44  * block this event pump at any time, but should start a new pump (<b>not</b>
    45  * a new EventDispatchThread) by again calling pumpEvents(Conditional). This
    45  * a new EventDispatchThread) by again calling pumpEvents(Conditional). This
    46  * secondary event pump will exit automatically as soon as the Condtional
    46  * secondary event pump will exit automatically as soon as the Conditional
    47  * evaluate()s to false and an additional Event is pumped and dispatched.
    47  * evaluate()s to false and an additional Event is pumped and dispatched.
    48  *
    48  *
    49  * @author Tom Ball
    49  * @author Tom Ball
    50  * @author Amy Fowler
    50  * @author Amy Fowler
    51  * @author Fred Ecks
    51  * @author Fred Ecks