mirror of
https://github.com/Estom/notes.git
synced 2026-02-04 02:53:57 +08:00
17 lines
254 B
Java
17 lines
254 B
Java
package cn.aofeng.demo.eventdriver_normal;
|
|
/**
|
|
* 事件
|
|
* @author aofeng <aofengblog@163.com>
|
|
*/
|
|
public class Event {
|
|
|
|
private Object data;
|
|
|
|
public Event(Object obj){
|
|
this.data = obj;
|
|
}
|
|
|
|
public Object getData() {
|
|
return data;
|
|
}
|
|
} |