|
JavaTM 2 Platform Standard Ed. 6 |
|||||||||
上一個類別 下一個類別 | 框架 無框架 | |||||||||
摘要: 巢狀 | 欄位 | 建構子 | 方法 | 詳細資訊: 欄位 | 建構子 | 方法 |
java.lang.Object java.util.EventObject java.awt.AWTEvent java.awt.event.InvocationEvent
public class InvocationEvent
當通過 AWT 事件排程執行緒進行排程時,在 Runnable
上執行 run()
方法的事件。此類別可以用作 ActiveEvent
的參考實作,而不用於宣告新類別和定義 dispatch()
。
通過調用 invokeLater
和 invokeAndWait
,可以將此類別的實例置於 EventQueue
上。客戶端程式碼可以使用這一事實來編寫 invokeLater
和 invokeAndWait
的替代函數,無需在任何 AWTEventListener
物件中編寫特殊程式碼。
ActiveEvent
,
EventQueue.invokeLater(java.lang.Runnable)
,
EventQueue.invokeAndWait(java.lang.Runnable)
,
AWTEventListener
,
序列化表格欄位摘要 | |
---|---|
protected boolean |
catchExceptions
如果 dispatch() 捕獲了 Throwable 並將其存儲在異常實例變數中,則設置為 true。 |
static int |
INVOCATION_DEFAULT
所有 InvocationEvent 的預設 id。 |
static int |
INVOCATION_FIRST
標記調用事件 id 範圍內的第一個整數 id。 |
static int |
INVOCATION_LAST
標記調用事件 id 範圍內的最後一個整數 id。 |
protected Object |
notifier
在 Runnable.run() 方法返回之後立即調用其 notifyAll() 方法的物件(可能為 null)。 |
protected Runnable |
runnable
調用其 run() 方法的 Runnable。 |
從類別 java.util.EventObject 繼承的欄位 |
---|
source |
建構子摘要 | |
---|---|
protected |
InvocationEvent(Object source,
int id,
Runnable runnable,
Object notifier,
boolean catchThrowables)
建構一個具有指定源和 ID 的 InvocationEvent ,此源和 ID 將在被指派時執行 runnable 的 run 方法。 |
|
InvocationEvent(Object source,
Runnable runnable)
建構一個具有指定源的 InvocationEvent ,此源將在被指派時執行 runnable 的 run 方法。 |
|
InvocationEvent(Object source,
Runnable runnable,
Object notifier,
boolean catchThrowables)
建構一個具有指定源的 InvocationEvent ,此源將在被指派時執行 runnable 的 run 方法。 |
方法摘要 | |
---|---|
void |
dispatch()
執行 Runnable 的 run() 方法並在 run() 返回時通知 notifier(如果有)。 |
Exception |
getException()
返回在執行 Runnable 的 run() 方法時捕獲的任何 Exception。 |
Throwable |
getThrowable()
返回在執行 Runnable 的 run() 方法時捕獲的任何 Throwable。 |
long |
getWhen()
返回此事件發生時的時間戳。 |
String |
paramString()
返回標識此事件的參數字元串。 |
從類別 java.awt.AWTEvent 繼承的方法 |
---|
consume, getID, isConsumed, setSource, toString |
從類別 java.util.EventObject 繼承的方法 |
---|
getSource |
從類別 java.lang.Object 繼承的方法 |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
欄位詳細資訊 |
---|
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
建構子詳細資訊 |
---|
public InvocationEvent(Object source, Runnable runnable)
InvocationEvent
,此源將在被指派時執行 runnable 的 run
方法。
這是一個很有用的建構子。對於 InvocationEvent(source, runnable) 形式的調用而言,其行為與調用 InvocationEvent
(source, runnable, null, false) 完全相同。
如果 source
為 null
,則此方法拋出 IllegalArgumentException
。
source
- 產生事件的 Object
runnable
- 執行其 run
方法的 Runnable
IllegalArgumentException
- 如果 source
為 nullInvocationEvent(Object, Runnable, Object, boolean)
public InvocationEvent(Object source, Runnable runnable, Object notifier, boolean catchThrowables)
InvocationEvent
,此源將在被指派時執行 runnable 的 run
方法。如果 notifier 為非 null
,則會在 run
返回之後立即對它調用 notifyAll()
。
對於 InvocationEvent(source, runnable, notifier, catchThrowables) 形式的調用而言,其行為與調用 InvocationEvent
(source, InvocationEvent.INVOCATION_DEFAULT, runnable, notifier, catchThrowables) 完全相同。
如果 source
為 null
,則此方法拋出 IllegalArgumentException
。
source
- 產生事件的 Object
runnable
- 執行其 run
方法的 Runnable
notifier
- 在 Runnable.run
返回之後調用其 notifyAll
方法的物件catchThrowables
- 指定 dispatch
是否應該在執行 Runnable
的 run
方法時捕獲 Throwable,或者應該將那些 Throwable 傳播到 EventDispatchThread 的排程循環中
IllegalArgumentException
- 如果 source
為 nullInvocationEvent(Object, int, Runnable, Object, boolean)
protected InvocationEvent(Object source, int id, Runnable runnable, Object notifier, boolean catchThrowables)
InvocationEvent
,此源和 ID 將在被指派時執行 runnable 的 run
方法。如果 notifier 為非 null
,則將在 run
返回之後立即對它調用 notifyAll
。
注意,傳遞無效 id
會導致不確定的行為。如果 source
為 null
,則此方法拋出 IllegalArgumentException
。
source
- 產生事件的 Object
id
- 事件的 IDrunnable
- 執行其 run
方法的 Runnable
notifier
- 在 Runnable.run
返回之後調用其 notifyAll
方法的 Object
catchThrowables
- 指定 dispatch
是否應該在執行 Runnable
的 run
方法時捕獲 Throwable,或者應該將那些 Throwable 傳播到 EventDispatchThread 的排程循環中
IllegalArgumentException
- 如果 source
為 null方法詳細資訊 |
---|
public void dispatch()
run()
方法並在 run()
返回時通知 notifier(如果有)。
ActiveEvent
中的 dispatch
public Exception getException()
run()
方法時捕獲的任何 Exception。
public Throwable getThrowable()
run()
方法時捕獲的任何 Throwable。
public long getWhen()
public String paramString()
AWTEvent
中的 paramString
|
JavaTM 2 Platform Standard Ed. 6 |
|||||||||
上一個類別 下一個類別 | 框架 無框架 | |||||||||
摘要: 巢狀 | 欄位 | 建構子 | 方法 | 詳細資訊: 欄位 | 建構子 | 方法 |
版權所有 2008 Sun Microsystems, Inc. 保留所有權利。請遵守GNU General Public License, version 2 only。