java.lang.Object | +--java.util.EventObject | +--java.awt.AWTEvent | +--java.awt.event.InvocationEvent
Unsafe: An event which executes the 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.
java.awt.ActiveEvent,
java.awt.EventQueue#invokeLater,
java.awt.EventQueue#invokeAndWait,
AWTEventListener,
Serialized Formprotected boolean
catchExceptions
private Exception
exception
static int
INVOCATION_FIRST
static int
INVOCATION_LAST
protected Object
notifier
ACTION_EVENT_MASK, ADJUSTMENT_EVENT_MASK, COMPONENT_EVENT_MASK, consumed, CONTAINER_EVENT_MASK, FOCUS_EVENT_MASK, HIERARCHY_BOUNDS_EVENT_MASK, HIERARCHY_EVENT_MASK, id, INPUT_METHOD_EVENT_MASK, INVOCATION_EVENT_MASK, ITEM_EVENT_MASK, KEY_EVENT_MASK, MOUSE_EVENT_MASK, MOUSE_MOTION_EVENT_MASK, MOUSE_WHEEL_EVENT_MASK, PAINT_EVENT_MASK, RESERVED_ID_MAX, TEXT_EVENT_MASK, WINDOW_EVENT_MASK, WINDOW_FOCUS_EVENT_MASK, WINDOW_STATE_EVENT_MASK
protected
InvocationEvent(Object source,
int id,
Runnable runnable,
Object notifier,
boolean catchExceptions)
InvocationEvent with the specified
source and ID which will execute the runnable's run
method when dispatched.
InvocationEvent(Object source,
Runnable runnable)
InvocationEvent with the specified
source which will execute the runnable's run
method when dispatched.
InvocationEvent(Object source,
Runnable runnable,
Object notifier,
boolean catchExceptions)
InvocationEvent with the specified
source which will execute the runnable's run
method when dispatched.
void
dispatch()
run() method and notifies the
notifier (if any) when run() returns.
Exception
getException()
run()
method.
public static final int INVOCATION_FIRST
public static final int INVOCATION_DEFAULT
public static final int INVOCATION_LAST
protected Runnable runnable
protected Object notifier
protected boolean catchExceptions
private Exception exception
private long when
getWhen()private static final long serialVersionUID
public InvocationEvent(Object source, Runnable runnable)
InvocationEvent with the specified
source which will execute the runnable's run
method when dispatched.
source - the Object that originated the eventrunnable - the Runnable whose run
method will be executedpublic InvocationEvent(Object source, Runnable runnable, Object notifier, boolean catchExceptions)
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.
source - the Object that originated
the eventrunnable - the Runnable whose
run method will be
executednotifier - the Object whose notifyAll
method will be called after
Runnable.run has returnedcatchExceptions - specifies whether dispatch
should catch Exception when executing
the Runnable's run
method, or should instead propagate those
Exceptions to the EventDispatchThread's
dispatch loopprotected InvocationEvent(Object source, int id, Runnable runnable, Object notifier, boolean catchExceptions)
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.
Note that passing in an invalid id results in
unspecified behavior.
source - the Object that originated
the eventid - the ID for the eventrunnable - the Runnable whose
run method will be executednotifier - the Object whose notifyAll
method will be called after
Runnable.run has returnedcatchExceptions - specifies whether dispatch
should catch Exception when executing the
Runnable's run
method, or should instead propagate those
Exceptions to the EventDispatchThread's
dispatch looppublic void dispatch()
run() method and notifies the
notifier (if any) when run() returns.
dispatch in interface ActiveEventpublic Exception getException()
run()
method.
public long getWhen()
public String paramString()
paramString in class AWTEvent