package de.ugoe.cs.autoquest.eventcore; import java.io.Serializable; /** *

* Common interface for event types. An event type can be, e.g., a mouse click, a keyboard * interactions in case of GUI platforms or a HTTP request in case of a Web application. *

* * @version 1.0 * @author Steffen Herbold */ public interface IEventType extends Serializable { /** *

* Returns the name of the event type. *

* * @return name of the event type */ public String getName(); }