Files
demo-ickwrite/src/com/light/util/IEventExecute.java
2018-05-20 21:07:42 +08:00

17 lines
277 B
Java

package com.light.util;
/**
* 执行的时候得事件处理类
* @author Light
*
* @param <T> 接口
*/
public interface IEventExecute<T> {
/**
* 事件的执行主体
* @param t 接口
* @throws Exception 异常错误
*/
void Execute(T t) throws Exception;
}