invokable.java

来自「在eclipse下开发使用Sun公司提供的媒体Api的本地音频播放工具。边听音乐」· Java 代码 · 共 22 行

JAVA
22
字号
/**
 * 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 + =
减小字号Ctrl + -
显示快捷键?