?? invokable.java
字號:
/**
* FileName: Invokable.java
* Copyright: 2007 華商世紀(jì)(北京)科貿(mào)發(fā)展股份有限公司 版權(quán)擁有。
*/
package play;
/**
* The Invokable interface can be used to identify a class as being capable
* of being "invoked".
*
* @author Derek DeMoro
*/
public interface Invokable {
/**
* Invokes the object.
*
* @param params optional arguments from the invoker.
* @return true if the invocation was successful, false if it failed, or was aborted.
*/
boolean invoke(Object... params);
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -