Whole document tree
java.awt.event
|
Field Summary | |
protected boolean |
catchExceptions
Set to true if dispatch() catches Exception and stores it in the exception instance variable. |
static int |
INVOCATION_DEFAULT
The default id for all InvocationEvents. |
static int |
INVOCATION_FIRST
Marks the first integer id for the range of invocation event ids. |
static int |
INVOCATION_LAST
Marks the last integer id for the range of invocation event ids. |
protected Object |
notifier
The (potentially null) Object whose notifyAll() method will be called immediately after the Runnable.run() method returns. |
protected Runnable |
runnable
The Runnable whose run() method will be called. |
Fields inherited from class java.util.EventObject |
source |
Constructor Summary | |
protected |
InvocationEvent(Object source,
int id,
Runnable runnable,
Object notifier,
boolean catchExceptions)
Constructs an InvocationEvent with the specified source and ID which will execute the runnable's run() method when dispatched. |
|
InvocationEvent(Object source,
Runnable runnable)
Constructs an InvocationEvent with the specified source which will execute the runnable's run() method when dispatched. |
|
InvocationEvent(Object source,
Runnable runnable,
Object notifier,
boolean catchExceptions)
Constructs an InvocationEvent with the specified source which will execute the runnable's run() method when dispatched. |
Method Summary | |
void |
dispatch()
Executes the Runnable's run() method and notifies the
notifier (if any) when run() returns. |
Exception |
getException()
Returns any Exception caught while executing the Runnable's run()
method. |
String |
paramString()
Returns a parameter string identifying this event. |
Methods inherited from class java.awt.AWTEvent |
consume, finalize, getID, isConsumed, toString |
Methods inherited from class java.util.EventObject |
getSource |
Methods inherited from class java.lang.Object |
clone, equals, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
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
Constructor Detail |
public InvocationEvent(Object source, Runnable runnable)
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)
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)
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 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 loopMethod Detail |
public void dispatch()
run()
method and notifies the
notifier (if any) when run()
returns.dispatch
in interface ActiveEvent
public Exception getException()
run()
method.public String paramString()
paramString
in class AWTEvent
|
JavaTM 2 Platform Std. Ed. v1.3.1 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Java, Java 2D, and JDBC are trademarks or registered trademarks of Sun Microsystems, Inc. in the US and other countries.
Copyright 1993-2001 Sun Microsystems, Inc. 901 San Antonio Road
Palo Alto, California, 94303, U.S.A. All Rights Reserved.