Ignore:
Timestamp:
09/06/12 13:14:24 (12 years ago)
Author:
sherbold
Message:
  • code documentation
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/quest-core-events/src/main/java/de/ugoe/cs/quest/eventcore/IEventType.java

    r543 r780  
     1 
    12package de.ugoe.cs.quest.eventcore; 
    23 
     
    56/** 
    67 * <p> 
    7  * TODO comment 
     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. 
    810 * </p> 
    911 *  
    10  * @version $Revision: $ $Date: Aug 16, 2012$ 
    11  * @author 2012, last modified by $Author: sherbold$ 
     12 * @version 1.0 
     13 * @author Steffen Herbold 
    1214 */ 
    1315public interface IEventType extends Serializable { 
    1416 
    1517    /** 
    16      * @return 
     18     * <p> 
     19     * Returns the name of the event type. 
     20     * </p> 
     21     *  
     22     * @return name of the event type 
    1723     */ 
    1824    public String getName(); 
Note: See TracChangeset for help on using the changeset viewer.