info.baseinsight.core.event.AppStartupEvent Maven / Gradle / Ivy
The newest version!
package info.baseinsight.core.event;
public class AppStartupEvent extends AppEvent{
/**
* Create a new ApplicationEvent.
* @param source the object on which the event initially occurred (never {@code null})
*/
public AppStartupEvent(Object source) {
super(source);
}
}