java.lang.Objectjava.util.EventObject
java.awt.AWTEvent
java.awt.event.InvocationEvent
All Implemented Interfaces:
ActiveEvent, Serializable
run() method on a Runnable
when dispatched by the AWT event dispatcher thread. This class can
be used as a reference implementation of ActiveEvent rather
than declaring a new class and defining dispatch().
Instances of this class are placed on the EventQueue by calls
to invokeLater and invokeAndWait. Client code
can use this fact to write replacement functions for invokeLater
and invokeAndWait without writing special-case code
in any AWTEventListener objects.
An unspecified behavior will be caused if the {@code id} parameter of any particular {@code InvocationEvent} instance is not in the range from {@code INVOCATION_FIRST} to {@code INVOCATION_LAST}.
Fred - EcksDavid - Mendenhall1.2 - | Field Summary | ||
|---|---|---|
| public static final int | INVOCATION_FIRST | Marks the first integer id for the range of invocation event ids. |
| public static final int | INVOCATION_DEFAULT | The default id for all InvocationEvents. |
| public static final int | INVOCATION_LAST | Marks the last integer id for the range of invocation event ids. |
| protected Runnable | runnable | The Runnable whose run() method will be called. |
| protected Object | notifier | The (potentially null) Object whose notifyAll() method will be called immediately after the Runnable.run() method returns. |
| protected boolean | catchExceptions | Set to true if dispatch() catches Throwable and stores it in the exception instance variable. If false, Throwables are propagated up to the EventDispatchThread's dispatch loop. |
| Fields inherited from java.util.EventObject: |
|---|
| source |
| Constructor: |
|---|
InvocationEvent with the specified
source which will execute the runnable's run
method when dispatched.
This is a convenience constructor. An invocation of the form InvocationEvent(source, runnable) behaves in exactly the same way as the invocation of InvocationEvent (source, runnable, null, false). This method throws an
|
InvocationEvent with the specified
source which will execute the runnable's run
method when dispatched. If notifier is non-null,
notifyAll() will be called on it
immediately after run returns.
An invocation of the form InvocationEvent(source, runnable, notifier, catchThrowables) behaves in exactly the same way as the invocation of InvocationEvent (source, InvocationEvent.INVOCATION_DEFAULT, runnable, notifier, catchThrowables). This method throws an
|
InvocationEvent with the specified
source and ID which will execute the runnable's run
method when dispatched. If notifier is non-null,
notifyAll will be called on it
immediately after run returns.
This method throws an
|
| Method from java.awt.event.InvocationEvent Summary: |
|---|
| dispatch, getException, getThrowable, getWhen, paramString |
| Methods from java.awt.AWTEvent: |
|---|
| consume, convertToOld, copyPrivateDataInto, dispatched, getID, isConsumed, paramString, setSource, toString |
| Methods from java.util.EventObject: |
|---|
| getSource, toString |
| Methods from java.lang.Object: |
|---|
| clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Method from java.awt.event.InvocationEvent Detail: |
|---|
run() method and notifies the
notifier (if any) when run() returns. |
run()
method. |
run()
method. |
|
|