19 lines
273 B
Java
19 lines
273 B
Java
package com.rosetta.im.event;
|
|
|
|
public class Event {
|
|
|
|
private String name;
|
|
|
|
public Event() {}
|
|
|
|
public String getEventName() {
|
|
if(this.name == null) {
|
|
this.name = this.getClass().getSimpleName();
|
|
}
|
|
return this.name;
|
|
}
|
|
|
|
|
|
|
|
}
|