Changeset 986


Ignore:
Timestamp:
11/15/12 11:29:27 (12 years ago)
Author:
pharms
Message:
  • small bugfix
File:
1 edited

Legend:

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

    r971 r986  
    7373                // Therefore, 
    7474                // 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); 
    7777 
    7878                return result; 
     
    8484        if (valueSelectionStartIndex >= 0) { 
    8585            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); 
    8888            } 
    8989            else { 
     
    101101     * @param i 
    102102     */ 
    103     private void handleValueSelections(int                   startIndex, 
     103    private void handleValueSelections(ITaskTreeNode         parent, 
     104                                       ITrackBar             trackbar, 
     105                                       int                   startIndex, 
    104106                                       int                   endIndex, 
    105                                        ITaskTreeNode         parent, 
    106107                                       ITaskTreeBuilder      builder, 
    107108                                       ITaskTreeNodeFactory  nodeFactory, 
     
    109110    { 
    110111        IIteration iteration = nodeFactory.createNewIteration(); 
    111         //builder.setDescription(iteration, "value selection on " + ) 
     112        builder.setDescription(iteration, "value selection on " + trackbar.getStringIdentifier()); 
    112113        result.addNewlyCreatedParentNode(iteration); 
    113114 
Note: See TracChangeset for help on using the changeset viewer.