source: trunk/quest-core-events/src/main/java/de/ugoe/cs/quest/eventcore/IEventType.java @ 780

Last change on this file since 780 was 780, checked in by sherbold, 12 years ago
  • code documentation
  • Property svn:mime-type set to text/plain
File size: 530 bytes
Line 
1
2package de.ugoe.cs.quest.eventcore;
3
4import java.io.Serializable;
5
6/**
7 * <p>
8 * Common interface for event types. An event type can be, e.g., a mouse click, a keyboard
9 * interactions in case of GUI platforms or a HTTP request in case of a Web application.
10 * </p>
11 *
12 * @version 1.0
13 * @author Steffen Herbold
14 */
15public interface IEventType extends Serializable {
16
17    /**
18     * <p>
19     * Returns the name of the event type.
20     * </p>
21     *
22     * @return name of the event type
23     */
24    public String getName();
25
26}
Note: See TracBrowser for help on using the repository browser.