Update of /cvsroot/bprocessor/model/src/net/sourceforge/bprocessor/model
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv10935/src/net/sourceforge/bprocessor/model
Modified Files:
Space.java
Log Message:
Small cosmetic changes to source
Index: Space.java
===================================================================
RCS file: /cvsroot/bprocessor/model/src/net/sourceforge/bprocessor/model/Space.java,v
retrieving revision 1.153
retrieving revision 1.154
diff -C2 -d -r1.153 -r1.154
*** Space.java 27 Jun 2007 08:34:26 -0000 1.153
--- Space.java 27 Jun 2007 08:41:24 -0000 1.154
***************
*** 60,63 ****
--- 60,72 ----
private Set<Surface> envelope;
+ /** type */
+ private int type;
+
+ /** level Space element or part */
+ private int level;
+
+ /** If the constructionspace is transparent */
+ private boolean transparent;
+
/**
* The next boolean specifies wether or not
***************
*** 68,71 ****
--- 77,87 ----
private boolean container;
+ /** The classification */
+ private Classification classification;
+
+ /** The classification */
+ private ClassificationType productType;
+
+
/**
* If proto points to another space, this space
***************
*** 111,145 ****
private long nextMaterialId;
- /** The classification */
- private Classification classification;
-
- /** The classification */
- private ClassificationType productType;
-
- /** If the constructionspace is transparent */
- private boolean transparent;
-
/** The transformation */
private TransformStack transform;
-
/** The modellor */
private Modellor modellor;
- /** type */
- private int type;
-
- /** level Space element or part */
- private int level;
-
/** the building the space belongs to */
private String building = "0";
-
/** the floor the space belongs to */
private String floor = "0";
-
/** the apartment the space belongs to */
private String apartment = "0";
-
/** the room the space belongs to */
private String room = "0";
--- 127,142 ----
|