Ignore:
Timestamp:
04/19/13 19:53:04 (11 years ago)
Author:
pharms
Message:
  • improved java doc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/autoquest-core-tasktrees/src/main/java/de/ugoe/cs/autoquest/tasktrees/treeifc/IEventTask.java

    r1146 r1167  
    1919 
    2020/** 
    21  * TODO comment 
     21 * <p> 
     22 * Event tasks represent events. They have no children and are therefore the leaf nodes of the 
     23 * task tree. They provide information about the event they represent. This includes the event 
     24 * type and the target. 
     25 * </p> 
    2226 *  
    23  * @version $Revision: $ $Date: $ 
    24  * @author 2011, last modified by $Author: $ 
     27 * @author Patrick Harms 
    2528 */ 
    2629public interface IEventTask extends ITask { 
    2730     
    2831    /** 
    29      * @return Returns the event type. 
     32     * <p> 
     33     * return the type of the event represented by this task 
     34     * </p> 
     35     *  
     36     * @return as described 
    3037     */ 
    3138    public IEventType getEventType(); 
    3239 
    3340    /** 
    34      * @return Returns the event target. 
     41     * <p> 
     42     * return the target of the event represented by this task 
     43     * </p> 
     44     *  
     45     * @return as described 
    3546     */ 
    3647    public IEventTarget getEventTarget(); 
    3748 
    3849    /** 
    39      * 
     50     * <p> 
     51     * returns a clone of this task, i.e. another event task being identical to this. The event 
     52     * type and target are not cloned but reused. 
     53     * </p> 
     54     *  
     55     * @return as described 
    4056     */ 
    4157    public IEventTask clone(); 
Note: See TracChangeset for help on using the changeset viewer.