📄 eventhandler.java
字号:
package net.sourceforge.gjtapi.util;
/**
* This is an interface that describes the event processing actions of an event.
* The implementor should be re-entrant.
* Creation date: (2000-02-25 7:15:02)
* @author: Richard Deadman
*/
public interface EventHandler {
/**
* This defines the method that the queued event object must implement.
*/
public abstract void process(Object ev);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -