- Timestamp:
- 11/15/12 11:29:27 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/autoquest-core-tasktrees/src/main/java/de/ugoe/cs/autoquest/tasktrees/temporalrelation/TrackBarSelectionDetectionRule.java
r971 r986 73 73 // Therefore, 74 74 // create an iteration with the different selectable values as selection children 75 handleValueSelections( valueSelectionStartIndex, index - 1, parent, builder,76 nodeFactory, result);75 handleValueSelections(parent, currentTrackBar, valueSelectionStartIndex, index - 1, 76 builder, nodeFactory, result); 77 77 78 78 return result; … … 84 84 if (valueSelectionStartIndex >= 0) { 85 85 if (finalize) { 86 handleValueSelections( valueSelectionStartIndex, parent.getChildren().size() - 1,87 parent , builder, nodeFactory, result);86 handleValueSelections(parent, currentTrackBar, valueSelectionStartIndex, 87 parent.getChildren().size() - 1, builder, nodeFactory, result); 88 88 } 89 89 else { … … 101 101 * @param i 102 102 */ 103 private void handleValueSelections(int startIndex, 103 private void handleValueSelections(ITaskTreeNode parent, 104 ITrackBar trackbar, 105 int startIndex, 104 106 int endIndex, 105 ITaskTreeNode parent,106 107 ITaskTreeBuilder builder, 107 108 ITaskTreeNodeFactory nodeFactory, … … 109 110 { 110 111 IIteration iteration = nodeFactory.createNewIteration(); 111 //builder.setDescription(iteration, "value selection on " + )112 builder.setDescription(iteration, "value selection on " + trackbar.getStringIdentifier()); 112 113 result.addNewlyCreatedParentNode(iteration); 113 114
Note: See TracChangeset
for help on using the changeset viewer.