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

    r1157 r1215  
    1717import de.ugoe.cs.autoquest.tasktrees.treeifc.ISelection; 
    1818import de.ugoe.cs.autoquest.tasktrees.treeifc.ITask; 
    19 import de.ugoe.cs.autoquest.tasktrees.treeifc.ITaskVisitor; 
    2019 
    2120/** 
    22  * TODO comment 
    23  *  
    24  * @version $Revision: $ $Date: 19.02.2012$ 
    25  * @author 2012, last modified by $Author: patrick$ 
     21 * <p> 
     22 * this is the default implementation of the interface {@link ISelection}. It does not do anything 
     23 * fancy except implementing the interface. 
     24 * </p>  
     25 * 
     26 * @author Patrick Harms 
    2627 */ 
    2728class Selection extends StructuringTemporalRelationship implements ISelection { 
    2829 
    29     /**  */ 
     30    /** 
     31     * <p> 
     32     * default serial version UID 
     33     * </p> 
     34     */ 
    3035    private static final long serialVersionUID = 1L; 
    3136 
    3237    /** 
    33      * TODO: comment 
    34      *  
    35      * @param name 
     38     * <p> 
     39     * simple constructor providing the base class with a human readable name of the type of this 
     40     * task 
     41     * </p> 
    3642     */ 
    3743    Selection() { 
     
    3945    } 
    4046 
    41     /* 
    42      * (non-Javadoc) 
    43      *  
    44      * @see java.lang.Object#clone() 
     47    /* (non-Javadoc) 
     48     * @see de.ugoe.cs.autoquest.tasktrees.treeimpl.StructuringTemporalRelationship#clone() 
    4549     */ 
    4650    @Override 
     
    4953    } 
    5054 
    51     /** 
    52      * <p> 
    53      * TODO: comment 
    54      * </p> 
    55      * 
    56      * @param i 
    57      * @param newChild 
     55    /* (non-Javadoc) 
     56     * @see de.ugoe.cs.autoquest.tasktrees.treeimpl.StructuringTemporalRelationship#addChild(ITask) 
    5857     */ 
    59     public void addChild(ITask newChild) { 
     58    @Override 
     59    void addChild(ITask newChild) { 
    6060        super.addChild(newChild); 
    6161        super.setDescription("selection of " + newChild); 
    6262    } 
    6363 
    64     /** 
    65      * <p> 
    66      * TODO: comment 
    67      * </p> 
    68      * 
    69      * @param i 
    70      * @param newChild 
     64    /* (non-Javadoc) 
     65     * @see de.ugoe.cs.autoquest.tasktrees.treeimpl.StructuringTemporalRelationship#addChild(int,ITask) 
    7166     */ 
    72     public void addChild(int index, ITask newChild) { 
     67    @Override 
     68    void addChild(int index, ITask newChild) { 
    7369        super.addChild(index, newChild); 
    7470        super.setDescription("selection of " + newChild); 
    7571    } 
    7672 
    77     /* (non-Javadoc) 
    78      * @see de.ugoe.cs.autoquest.tasktrees.treeifc.ITemporalRelationship#accept(de.ugoe.cs.autoquest.tasktrees.treeifc.TaskVisitor) 
    79      */ 
    80     @Override 
    81     public void accept(ITaskVisitor visitor) { 
    82         visitor.visit(this); 
    83     } 
    84  
    8573} 
Note: See TracChangeset for help on using the changeset viewer.