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/Sequence.java

    r1157 r1215  
    1616 
    1717import de.ugoe.cs.autoquest.tasktrees.treeifc.ISequence; 
    18 import de.ugoe.cs.autoquest.tasktrees.treeifc.ITaskVisitor; 
    1918 
    2019/** 
    21  * TODO comment 
    22  *  
    23  * @version $Revision: $ $Date: 19.02.2012$ 
    24  * @author 2012, last modified by $Author: patrick$ 
     20 * <p> 
     21 * this is the default implementation of the interface {@link ISequence}. It does not do anything 
     22 * fancy except implementing the interface. 
     23 * </p>  
     24 * 
     25 * @author Patrick Harms 
    2526 */ 
    2627class Sequence extends StructuringTemporalRelationship implements ISequence { 
    2728     
    28     /**  */ 
     29    /** 
     30     * <p> 
     31     * default serial version UID 
     32     * </p> 
     33     */ 
    2934    private static final long serialVersionUID = 1L; 
    3035 
    3136    /** 
    32      * TODO: comment 
    33      *  
    34      * @param name 
     37     * <p> 
     38     * simple constructor providing the base class with a human readable name of the type of this 
     39     * task 
     40     * </p> 
    3541     */ 
    3642    Sequence() { 
     
    3844    } 
    3945 
    40     /* 
    41      * (non-Javadoc) 
    42      *  
    43      * @see de.ugoe.cs.tasktree.treeimpl.TaskTreeNodeImpl#clone() 
     46    /* (non-Javadoc) 
     47     * @see de.ugoe.cs.autoquest.tasktrees.treeimpl.StructuringTemporalRelationship#clone() 
    4448     */ 
    4549    @Override 
     
    4852    } 
    4953     
    50     /* (non-Javadoc) 
    51      * @see de.ugoe.cs.autoquest.tasktrees.treeimpl.TaskTreeNode#accept(de.ugoe.cs.autoquest.tasktrees.treeifc.NodeVisitor) 
    52      */ 
    53     @Override 
    54     public void accept(ITaskVisitor visitor) { 
    55         visitor.visit(this); 
    56     } 
    57  
    5854} 
Note: See TracChangeset for help on using the changeset viewer.