[Bprocessor-commit] facade/src/net/sourceforge/bprocessor/facade/modellor FacadeModellor.java, 1.2
Status: Pre-Alpha
Brought to you by:
henryml
From: Michael L. <he...@us...> - 2006-10-05 11:27:13
|
Update of /cvsroot/bprocessor/facade/src/net/sourceforge/bprocessor/facade/modellor In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv17536/src/net/sourceforge/bprocessor/facade/modellor Modified Files: FacadeModellor.java WindowModellor.java Log Message: Removed methods from Project to add, remove and delete geometry Index: WindowModellor.java =================================================================== RCS file: /cvsroot/bprocessor/facade/src/net/sourceforge/bprocessor/facade/modellor/WindowModellor.java,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** WindowModellor.java 4 Oct 2006 14:44:07 -0000 1.11 --- WindowModellor.java 5 Oct 2006 11:27:07 -0000 1.12 *************** *** 202,206 **** framedepth = ((Double)((Attribute)attributes.get(2)).getValue()).doubleValue(); offset = ((Double)((Attribute)attributes.get(3)).getValue()).doubleValue(); ! Iterator sit = Project.getInstance().getSurfaces().iterator(); Object value = ((Attribute)attributes.get(4)).getValue(); while (sit.hasNext()) { --- 202,206 ---- framedepth = ((Double)((Attribute)attributes.get(2)).getValue()).doubleValue(); offset = ((Double)((Attribute)attributes.get(3)).getValue()).doubleValue(); ! Iterator sit = Project.getInstance().getActiveSpace().getSurfaces().iterator(); Object value = ((Attribute)attributes.get(4)).getValue(); while (sit.hasNext()) { Index: FacadeModellor.java =================================================================== RCS file: /cvsroot/bprocessor/facade/src/net/sourceforge/bprocessor/facade/modellor/FacadeModellor.java,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** FacadeModellor.java 3 Oct 2006 09:52:56 -0000 1.20 --- FacadeModellor.java 5 Oct 2006 11:27:07 -0000 1.21 *************** *** 203,207 **** } else if (a.getName().equals("Front")) { Project.getInstance().checkpoint(); ! Iterator sit = Project.getInstance().getSurfaces().iterator(); while (sit.hasNext()) { Surface s = (Surface)sit.next(); --- 203,207 ---- } else if (a.getName().equals("Front")) { Project.getInstance().checkpoint(); ! Iterator sit = Project.getInstance().getActiveSpace().getSurfaces().iterator(); while (sit.hasNext()) { Surface s = (Surface)sit.next(); |