Update of /cvsroot/bprocessor/model/src/net/sourceforge/bprocessor/model
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv23263/src/net/sourceforge/bprocessor/model
Modified Files:
Space.java
Log Message:
small changes to space constructor
Index: Space.java
===================================================================
RCS file: /cvsroot/bprocessor/model/src/net/sourceforge/bprocessor/model/Space.java,v
retrieving revision 1.198
retrieving revision 1.199
diff -C2 -d -r1.198 -r1.199
*** Space.java 5 Nov 2007 10:33:31 -0000 1.198
--- Space.java 5 Nov 2007 12:02:29 -0000 1.199
***************
*** 179,183 ****
envelope = new HashSet<Surface>();
transform = new TransformStack();
- modellor = null;
initializeContainers();
}
--- 179,182 ----
***************
*** 207,216 ****
public Space(String name, int type, boolean container) {
super();
! setName(name);
! setType(type);
if (type == FUNCTIONAL) {
! setTransparent(true);
} else {
! setTransparent(false);
}
this.container = container;
--- 206,215 ----
public Space(String name, int type, boolean container) {
super();
! this.name = name;
! this.type = type;
if (type == FUNCTIONAL) {
! this.transparent = true;
} else {
! this.transparent = false;
}
this.container = container;
***************
*** 218,222 ****
envelope = new HashSet<Surface>();
transform = new TransformStack();
- modellor = null;
if (container) {
initializeContainers();
--- 217,220 ----
|