de.swm.gwt.client.eventbus.IEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swm-gwt-client Show documentation
Show all versions of swm-gwt-client Show documentation
Plain GWT Swm erweiterungen, auch zur benutzung in mobilen Geraeten
package de.swm.gwt.client.eventbus;
/**
* Definiert einen Event der zum Event-Bus gesendet werden kann.
* @author Wiese.Daniel
*
copyright (C) 2011, SWM Services GmbH
*
*/
public interface IEvent {
/**
* Der Name des Events.
* @return der Name.
*/
String eventName();
}