[Bprocessor-commit] gui/src/net/sourceforge/bprocessor/gui/attrview AttributeView.java,1.9,1.10
Status: Pre-Alpha
Brought to you by:
henryml
From: Michael L. <he...@us...> - 2005-12-11 17:28:04
|
Update of /cvsroot/bprocessor/gui/src/net/sourceforge/bprocessor/gui/attrview In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31695/src/net/sourceforge/bprocessor/gui/attrview Modified Files: AttributeView.java Log Message: Removed part and element Index: AttributeView.java =================================================================== RCS file: /cvsroot/bprocessor/gui/src/net/sourceforge/bprocessor/gui/attrview/AttributeView.java,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** AttributeView.java 21 Nov 2005 09:52:17 -0000 1.9 --- AttributeView.java 11 Dec 2005 17:27:54 -0000 1.10 *************** *** 11,17 **** import net.sourceforge.bprocessor.kernel.notification.Notifier; import net.sourceforge.bprocessor.model.ConstructionSpace; - import net.sourceforge.bprocessor.model.Element; import net.sourceforge.bprocessor.model.FunctionalSpace; - import net.sourceforge.bprocessor.model.Part; import net.sourceforge.bprocessor.model.Project; import net.sourceforge.bprocessor.model.Surface; --- 11,15 ---- *************** *** 72,81 **** ConstructionSpace current = Project.getInstance().findConstructionSpaceById(n.getObject()); ap.displayConsSpace(current); - } else if (type.equals(Notification.ELEMENT_SELECTED)) { - Element current = Project.getInstance().findElementById(n.getObject()); - ap.display(current); - } else if (type.equals(Notification.PART_SELECTED)) { - Part current = Project.getInstance().findPartById(n.getObject()); - ap.display(current); } else if (type.equals(Notification.SURFACE_SELECTED)) { Surface current = Project.getInstance().findSurfaceById(n.getObject()); --- 70,73 ---- |