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

Last change on this file since 922 was 922, checked in by sherbold, 12 years ago
  • renaming of packages from de.ugoe.cs.quest to de.ugoe.cs.autoquest
  • Property svn:mime-type set to text/plain
File size: 534 bytes
RevLine 
[780]1
[922]2package de.ugoe.cs.autoquest.eventcore;
[541]3
[543]4import java.io.Serializable;
5
[541]6/**
7 * <p>
[780]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.
[541]10 * </p>
11 *
[780]12 * @version 1.0
13 * @author Steffen Herbold
[541]14 */
[543]15public interface IEventType extends Serializable {
[541]16
[542]17    /**
[780]18     * <p>
19     * Returns the name of the event type.
20     * </p>
21     *
22     * @return name of the event type
[542]23     */
24    public String getName();
25
[541]26}
Note: See TracBrowser for help on using the repository browser.