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

* Common interface for event targets. An event target can, e.g., be an element of a GUI or Web * server. A concrete event-driven software platform can define its event targets through the * implementation of this interface. *

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

* Returns the name of event-driven software platform to which the target belongs. *

* * @return name of the platform */ public String getPlatform(); /** *

* Returns a string identifier of the target. This is very convenient for visualizations of * events. *

* * @return target identifier */ public String getStringIdentifier(); }