lodsve.core.event.module.BaseEvent Maven / Gradle / Ivy
/*
* Copyright (C) 2018 Sun.Hao
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
package lodsve.core.event.module;
import java.io.Serializable;
import java.util.Date;
import java.util.EventObject;
/**
* 事件的基类.
*
* @author sunhao([email protected])
* @date 13-4-27 上午5:00
*/
public class BaseEvent extends EventObject implements Serializable {
private Date eventTime;
/**
* Constructs a prototypical Event.
*
* @param source The object on which the Event initially occurred.
* @throws IllegalArgumentException if source is null.
*/
public BaseEvent(Object source, Date eventTime) {
super(source);
this.eventTime = eventTime;
}
public Date getEventTime() {
return eventTime;
}
public void setEventTime(Date eventTime) {
this.eventTime = eventTime;
}
}