📄 cancelaction.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -