Ignore:
Timestamp:
05/27/13 15:24:09 (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/treeimpl/EventTask.java

    r1157 r1215  
    2121 
    2222/** 
    23  * TODO comment 
    24  *  
    25  * @version $Revision: $ $Date: $ 
    26  * @author 2011, last modified by $Author: $ 
     23 * <p> 
     24 * this is the default implementation of the interface {@link IEventTask}. It does not do anything 
     25 * fancy except implementing the interface. 
     26 * </p>  
     27 * 
     28 * @author Patrick Harms 
    2729 */ 
    2830class EventTask extends Task implements IEventTask { 
    2931     
    30     /**  */ 
     32    /** 
     33     * <p> 
     34     * default serial version UID 
     35     * </p> 
     36     */ 
    3137    private static final long serialVersionUID = 1L; 
    3238 
    33     /** */ 
     39    /** 
     40     * <p> 
     41     * the type of the represented event 
     42     * </p>  
     43     */ 
    3444    private IEventType eventType; 
    3545 
    36     /** */ 
     46    /** 
     47     * <p> 
     48     * the target of the represented event 
     49     * </p>  
     50     */ 
    3751    private IEventTarget eventTarget; 
    3852 
    3953    /** 
    40      * @param eventType 
    41      * @param eventTarget 
     54     * <p> 
     55     * simple constructor initializing this task with an event type and an event target 
     56     * </p> 
     57     *  
     58     * @param eventType   the type of the represented event 
     59     * @param eventTarget the target of the represented event 
    4260     */ 
    4361    EventTask(IEventType eventType, IEventTarget eventTarget) { 
     
    4765    } 
    4866 
    49     /** 
    50      * @return Returns the interaction. 
     67    /* (non-Javadoc) 
     68     * @see de.ugoe.cs.autoquest.tasktrees.treeifc.IEventTask#getEventType() 
    5169     */ 
     70    @Override 
    5271    public IEventType getEventType() { 
    5372        return eventType; 
    5473    } 
    5574 
    56     /** 
    57      * @return Returns the GUIElement. 
     75    /* (non-Javadoc) 
     76     * @see de.ugoe.cs.autoquest.tasktrees.treeifc.IEventTask#getEventTarget() 
    5877     */ 
     78    @Override 
    5979    public IEventTarget getEventTarget() { 
    6080        return eventTarget; 
    6181    } 
    6282 
    63     /* 
    64      * (non-Javadoc) 
    65      *  
    66      * @see de.harms.tasktrees.TreeNode#clone() 
     83    /* (non-Javadoc) 
     84     * @see de.ugoe.cs.autoquest.tasktrees.treeimpl.Task#clone() 
    6785     */ 
    6886    @Override 
     
    7391 
    7492    /* (non-Javadoc) 
    75      * @see de.ugoe.cs.autoquest.tasktrees.treeifc.IEventTask#accept(de.ugoe.cs.autoquest.tasktrees.treeifc.TaskVisitor) 
     93     * @see de.ugoe.cs.autoquest.tasktrees.treeimpl.Task#accept(ITaskVisitor) 
    7694     */ 
    7795    @Override 
Note: See TracChangeset for help on using the changeset viewer.