Ignore:
Timestamp:
05/27/13 15:52:39 (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/UserSession.java

    r1146 r1216  
    2525/** 
    2626 * <p> 
    27  * TODO comment 
     27 * this is the default implementation of the interface {@link IUserSession}. It 
     28 * does not do anything fancy except implementing the interface. 
    2829 * </p> 
    2930 *  
     
    3233class UserSession implements IUserSession { 
    3334     
    34     /**  */ 
     35    /** 
     36     * <p> 
     37     * default serial version UID 
     38     * </p> 
     39     */ 
    3540    private static final long serialVersionUID = 1L; 
     41     
    3642    /** 
    37      *  
     43     * <p> 
     44     * the task instances belonging to the user session 
     45     * </p> 
    3846     */ 
    3947    private List<ITaskInstance> executedTasks = new LinkedList<ITaskInstance>(); 
     
    7179    } 
    7280 
    73     /* 
    74      * (non-Javadoc) 
    75      *  
    76      * @see de.ugoe.cs.autoquest.tasktrees.treeifc.TaskTreeNode#equals(TaskTreeNode) 
     81    /* (non-Javadoc) 
     82     * @see de.ugoe.cs.autoquest.tasktrees.treeifc.IUserSession#equals(IUserSession) 
    7783     */ 
    7884    @Override 
     
    8389    } 
    8490 
    85     /* 
    86      * (non-Javadoc) 
    87      *  
     91    /* (non-Javadoc) 
    8892     * @see java.lang.Object#hashCode() 
    8993     */ 
     
    9397    } 
    9498 
    95     /* 
    96      * (non-Javadoc) 
    97      *  
     99    /* (non-Javadoc) 
    98100     * @see java.lang.Object#toString() 
    99101     */ 
     
    103105    } 
    104106 
    105     /* 
    106      * (non-Javadoc) 
    107      *  
     107    /* (non-Javadoc) 
    108108     * @see java.lang.Object#clone() 
    109109     */ 
     
    130130 
    131131    /** 
    132      * 
     132     * <p> 
     133     * used internally to add a task instance to the user session 
     134     * </p> 
     135     *  
     136     * @param taskInstance the task instance to be added 
    133137     */ 
    134138    void addExecutedTask(ITaskInstance taskInstance) { 
     
    137141 
    138142    /** 
    139      * 
     143     * <p> 
     144     * used internally to add a task instance to the user session at a specific position 
     145     * </p> 
     146     *  
     147     * @param index        the index the task instance shall be added to 
     148     * @param taskInstance the task instance to be added 
    140149     */ 
    141150    void addExecutedTask(int index, ITaskInstance taskInstance) { 
     
    144153 
    145154    /** 
    146      * 
     155     * <p> 
     156     * used internally to remove a task instance from the user session 
     157     * </p> 
     158     *  
     159     * @param index the index of the task instance to be removed 
    147160     */ 
    148161    void removeExecutedTask(int index) { 
Note: See TracChangeset for help on using the changeset viewer.