Update of /cvsroot/bprocessor/gui/src/net/sourceforge/bprocessor/gui/treeview
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv11671/src/net/sourceforge/bprocessor/gui/treeview
Modified Files:
SpaceTreeView.java
Log Message:
Constraints can now contain expressions (*, /, +, -, (), pi and e).
Index: SpaceTreeView.java
===================================================================
RCS file: /cvsroot/bprocessor/gui/src/net/sourceforge/bprocessor/gui/treeview/SpaceTreeView.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** SpaceTreeView.java 15 May 2006 12:11:58 -0000 1.8
--- SpaceTreeView.java 16 May 2006 15:42:14 -0000 1.9
***************
*** 52,56 ****
Collections.sort(functional, alpha);
LinkedList constraints = new LinkedList(Project.getInstance().getConstraints());
! Collections.sort(constraints, alpha);
Enumeration e = getExpandedDescendants(new TreePath(root));
Object[] paths = findPaths(e);
--- 52,56 ----
Collections.sort(functional, alpha);
LinkedList constraints = new LinkedList(Project.getInstance().getConstraints());
! //Collections.sort(constraints, alpha);
Enumeration e = getExpandedDescendants(new TreePath(root));
Object[] paths = findPaths(e);
|