Ignore:
Timestamp:
09/05/14 20:20:29 (10 years ago)
Author:
rkrimmel
Message:

Added automatically created javadoc, still needs to be commented properly though

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/autoquest-core-tasktrees-alignment/src/main/java/de/ugoe/cs/autoquest/tasktrees/treeimpl/UserSession.java

    r1733 r1734  
    2424import de.ugoe.cs.autoquest.tasktrees.treeifc.IUserSession; 
    2525 
     26// TODO: Auto-generated Javadoc 
    2627/** 
    2728 * <p> 
     
    3435class UserSession implements IUserSession { 
    3536 
    36         /** 
    37          * <p> 
    38          * default serial version UID 
    39          * </p> 
    40          */ 
     37        /** <p> default serial version UID </p>. */ 
    4138        private static final long serialVersionUID = 1L; 
    4239 
    43         /** 
    44          * <p> 
    45          * the task instances belonging to the user session 
    46          * </p> 
    47          */ 
     40        /** <p> the task instances belonging to the user session </p>. */ 
    4841        private List<ITaskInstance> executedTasks = new ArrayList<ITaskInstance>(); 
    4942 
     
    5245         * used internally to add a task instance to the user session at a specific 
    5346         * position 
    54          * </p> 
    55          *  
    56          * @param index 
    57          *            the index the task instance shall be added to 
    58          * @param taskInstance 
    59          *            the task instance to be added 
     47         * </p>. 
     48         * 
     49         * @param index            the index the task instance shall be added to 
     50         * @param taskInstance            the task instance to be added 
    6051         */ 
    6152        void addExecutedTask(int index, ITaskInstance taskInstance) { 
     
    6657         * <p> 
    6758         * used internally to add a task instance to the user session 
    68          * </p> 
    69          *  
    70          * @param taskInstance 
    71          *            the task instance to be added 
     59         * </p>. 
     60         * 
     61         * @param taskInstance            the task instance to be added 
    7262         */ 
    7363        void addExecutedTask(ITaskInstance taskInstance) { 
     
    159149         * <p> 
    160150         * used internally to remove a task instance from the user session 
    161          * </p> 
    162          *  
    163          * @param index 
    164          *            the index of the task instance to be removed 
     151         * </p>. 
     152         * 
     153         * @param index            the index of the task instance to be removed 
    165154         */ 
    166155        void removeExecutedTask(int index) { 
Note: See TracChangeset for help on using the changeset viewer.