Update of /cvsroot/bprocessor/gui/src/net/sourceforge/bprocessor/gui/treeview
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv4962/src/net/sourceforge/bprocessor/gui/treeview
Modified Files:
GenericTreeView.java
Log Message:
removed unused code
Index: GenericTreeView.java
===================================================================
RCS file: /cvsroot/bprocessor/gui/src/net/sourceforge/bprocessor/gui/treeview/GenericTreeView.java,v
retrieving revision 1.104
retrieving revision 1.105
diff -C2 -d -r1.104 -r1.105
*** GenericTreeView.java 19 Sep 2007 12:07:08 -0000 1.104
--- GenericTreeView.java 19 Sep 2007 12:43:33 -0000 1.105
***************
*** 319,346 ****
/**
- * add target to selection
- * @param target Object
- */
- public void select(Object target) {
- if (target instanceof Geometric) {
- Selection.primary().add((Geometric)target);
- } else {
- AttributeView.instance().display(target);
- }
- }
-
- /**
- * deselect target
- * @param target Object
- */
- public void deselect(Object target) {
- if (target instanceof Geometric) {
- Selection.primary().remove(target);
- } else {
- AttributeView.instance().display(null);
- }
- }
-
- /**
* GenericNode
*/
--- 319,322 ----
|