Ignore:
Timestamp:
03/18/13 11:44:00 (11 years ago)
Author:
pharms
Message:
  • improved visualization of task trees
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/autoquest-ui-swt/src/main/java/de/ugoe/cs/autoquest/ui/swt/ShowTaskTreeDialog.java

    r1094 r1122  
    121121         
    122122        TreeItem child = new TreeItem(tree, SWT.NULL); 
    123         child.setText(root.toString()); 
     123        child.setText(root.getName() + " (" + root.getDescription() + ")"); 
    124124        child.setData(root); 
    125125        buildGuiTree(child, root); 
     
    134134            for (ITaskTreeNode childTask : node.getChildren()) { 
    135135                TreeItem child = new TreeItem(currentParent, SWT.NULL); 
    136                 child.setText(childTask.toString()); 
     136                child.setText(childTask.getName() + " (" + childTask.getDescription() + ")"); 
    137137                child.setData(childTask); 
    138138                buildGuiTree(child, childTask); 
Note: See TracChangeset for help on using the changeset viewer.