cancelaction.java

来自「国外的j2me播放器软件」· Java 代码 · 共 17 行

JAVA
17
字号
package no.auc.one.portableplayer.utils;

import java.io.IOException;

/**
 * To cancel some kind of action
 */
public interface CancelAction {

    /**
     * Cancels the action, specified by the implementor of the interface.
     *
     * @throws IOException May be thrown if something happends when canceling the action.
     */
    public void cancel() throws IOException;
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?