Changeset 1414


Ignore:
Timestamp:
02/27/14 17:21:20 (10 years ago)
Author:
pharms
Message:
Location:
trunk/autoquest-core-tasktrees/src/main/java/de/ugoe/cs/autoquest/tasktrees/treeimpl
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/autoquest-core-tasktrees/src/main/java/de/ugoe/cs/autoquest/tasktrees/treeimpl/EventTaskInstance.java

    r1294 r1414  
    2121/** 
    2222 * <p> 
    23  * TODO comment 
     23 * Default implementation of {@link IEventTaskInstance}. 
    2424 * </p> 
    2525 *  
     
    4444    /** 
    4545     * <p> 
    46      * TODO: comment 
     46     * initializes this instance with the respective task model and the represented event 
    4747     * </p> 
    4848     * 
    49      * @param task 
    50      * @param event 
     49     * @param task  the task of which this is an instance 
     50     * @param event the event represented by this instance 
    5151     */ 
    5252    EventTaskInstance(IEventTask task, Event event) { 
  • trunk/autoquest-core-tasktrees/src/main/java/de/ugoe/cs/autoquest/tasktrees/treeimpl/IterationInstance.java

    r1294 r1414  
    2626/** 
    2727 * <p> 
    28  * TODO comment 
     28 * Default implementation of {@link IIterationInstance}. 
    2929 * </p> 
    3030 *  
     
    4949    /** 
    5050     * <p> 
    51      * TODO: comment 
     51     * initializes this instance with the respective task model 
    5252     * </p> 
    5353     * 
    54      * @param task 
     54     * @param task  the task of which this is an instance 
    5555     */ 
    5656    IterationInstance(IIteration task) { 
     
    167167     * @param index the position of the child to be removed 
    168168     *  
    169      * @return the child remove from the children of this instance 
     169     * @return the child removed from the children of this instance 
    170170     */ 
    171171    synchronized ITaskInstance removeChild(int index) { 
  • trunk/autoquest-core-tasktrees/src/main/java/de/ugoe/cs/autoquest/tasktrees/treeimpl/OptionalInstance.java

    r1294 r1414  
    2222/** 
    2323 * <p> 
    24  * TODO comment 
     24 * Default implementation of {@link IOptionalInstance}. 
    2525 * </p> 
    2626 *  
     
    3838    /** 
    3939     * <p> 
    40      * the child of this task instance 
     40     * the child of this task instance if any 
    4141     * </p> 
    4242     */ 
     
    4545    /** 
    4646     * <p> 
    47      * TODO: comment 
     47     * initializes this instance with the respective task model 
    4848     * </p> 
    4949     * 
    50      * @param task 
     50     * @param task  the task of which this is an instance 
    5151     */ 
    5252    OptionalInstance(ITask task) { 
  • trunk/autoquest-core-tasktrees/src/main/java/de/ugoe/cs/autoquest/tasktrees/treeimpl/SelectionInstance.java

    r1294 r1414  
    2222/** 
    2323 * <p> 
    24  * TODO comment 
     24 * Default implementation of {@link ISelectionInstance}. 
    2525 * </p> 
    2626 *  
     
    4545    /** 
    4646     * <p> 
    47      * TODO: comment 
     47     * initializes this instance with the respective task model 
    4848     * </p> 
    4949     * 
    50      * @param task 
     50     * @param task  the task of which this is an instance 
    5151     */ 
    5252    SelectionInstance(ITask task) { 
  • trunk/autoquest-core-tasktrees/src/main/java/de/ugoe/cs/autoquest/tasktrees/treeimpl/SequenceInstance.java

    r1294 r1414  
    2020import java.util.List; 
    2121 
     22import de.ugoe.cs.autoquest.tasktrees.treeifc.IIterationInstance; 
    2223import de.ugoe.cs.autoquest.tasktrees.treeifc.ISequence; 
    2324import de.ugoe.cs.autoquest.tasktrees.treeifc.ISequenceInstance; 
     
    2627/** 
    2728 * <p> 
    28  * TODO comment 
     29 * Default implementation of {@link IIterationInstance}. 
    2930 * </p> 
    3031 *  
     
    4950    /** 
    5051     * <p> 
    51      * TODO: comment 
     52     * initializes this instance with the respective task model 
    5253     * </p> 
    5354     * 
    54      * @param task 
     55     * @param task  the task of which this is an instance 
    5556     */ 
    5657    SequenceInstance(ISequence task) { 
     
    167168     * @param index the position of the child to be removed 
    168169     *  
    169      * @return the child remove from the children of this instance 
     170     * @return the child removed from the children of this instance 
    170171     */ 
    171172    synchronized ITaskInstance removeChild(int index) { 
Note: See TracChangeset for help on using the changeset viewer.