Changeset 1414 for trunk/autoquest-core-tasktrees
- Timestamp:
- 02/27/14 17:21:20 (11 years ago)
- 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 21 21 /** 22 22 * <p> 23 * TODO comment23 * Default implementation of {@link IEventTaskInstance}. 24 24 * </p> 25 25 * … … 44 44 /** 45 45 * <p> 46 * TODO: comment46 * initializes this instance with the respective task model and the represented event 47 47 * </p> 48 48 * 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 51 51 */ 52 52 EventTaskInstance(IEventTask task, Event event) { -
trunk/autoquest-core-tasktrees/src/main/java/de/ugoe/cs/autoquest/tasktrees/treeimpl/IterationInstance.java
r1294 r1414 26 26 /** 27 27 * <p> 28 * TODO comment28 * Default implementation of {@link IIterationInstance}. 29 29 * </p> 30 30 * … … 49 49 /** 50 50 * <p> 51 * TODO: comment51 * initializes this instance with the respective task model 52 52 * </p> 53 53 * 54 * @param task 54 * @param task the task of which this is an instance 55 55 */ 56 56 IterationInstance(IIteration task) { … … 167 167 * @param index the position of the child to be removed 168 168 * 169 * @return the child remove from the children of this instance169 * @return the child removed from the children of this instance 170 170 */ 171 171 synchronized ITaskInstance removeChild(int index) { -
trunk/autoquest-core-tasktrees/src/main/java/de/ugoe/cs/autoquest/tasktrees/treeimpl/OptionalInstance.java
r1294 r1414 22 22 /** 23 23 * <p> 24 * TODO comment24 * Default implementation of {@link IOptionalInstance}. 25 25 * </p> 26 26 * … … 38 38 /** 39 39 * <p> 40 * the child of this task instance 40 * the child of this task instance if any 41 41 * </p> 42 42 */ … … 45 45 /** 46 46 * <p> 47 * TODO: comment47 * initializes this instance with the respective task model 48 48 * </p> 49 49 * 50 * @param task 50 * @param task the task of which this is an instance 51 51 */ 52 52 OptionalInstance(ITask task) { -
trunk/autoquest-core-tasktrees/src/main/java/de/ugoe/cs/autoquest/tasktrees/treeimpl/SelectionInstance.java
r1294 r1414 22 22 /** 23 23 * <p> 24 * TODO comment24 * Default implementation of {@link ISelectionInstance}. 25 25 * </p> 26 26 * … … 45 45 /** 46 46 * <p> 47 * TODO: comment47 * initializes this instance with the respective task model 48 48 * </p> 49 49 * 50 * @param task 50 * @param task the task of which this is an instance 51 51 */ 52 52 SelectionInstance(ITask task) { -
trunk/autoquest-core-tasktrees/src/main/java/de/ugoe/cs/autoquest/tasktrees/treeimpl/SequenceInstance.java
r1294 r1414 20 20 import java.util.List; 21 21 22 import de.ugoe.cs.autoquest.tasktrees.treeifc.IIterationInstance; 22 23 import de.ugoe.cs.autoquest.tasktrees.treeifc.ISequence; 23 24 import de.ugoe.cs.autoquest.tasktrees.treeifc.ISequenceInstance; … … 26 27 /** 27 28 * <p> 28 * TODO comment29 * Default implementation of {@link IIterationInstance}. 29 30 * </p> 30 31 * … … 49 50 /** 50 51 * <p> 51 * TODO: comment52 * initializes this instance with the respective task model 52 53 * </p> 53 54 * 54 * @param task 55 * @param task the task of which this is an instance 55 56 */ 56 57 SequenceInstance(ISequence task) { … … 167 168 * @param index the position of the child to be removed 168 169 * 169 * @return the child remove from the children of this instance170 * @return the child removed from the children of this instance 170 171 */ 171 172 synchronized ITaskInstance removeChild(int index) {
Note: See TracChangeset
for help on using the changeset viewer.