📄 invokable.java
字号:
/**
* FileName: Invokable.java
* Copyright: 2007 华商世纪(北京)科贸发展股份有限公司 版权拥有。
*/
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);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -