eventhandler.java

来自「jtapi for telephone」· Java 代码 · 共 14 行

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