Update of /cvsroot/bprocessor/model/src/net/sourceforge/bprocessor/model
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv11742/src/net/sourceforge/bprocessor/model
Modified Files:
Space.java
Log Message:
Functional spaces can be non-transparent too
Index: Space.java
===================================================================
RCS file: /cvsroot/bprocessor/model/src/net/sourceforge/bprocessor/model/Space.java,v
retrieving revision 1.173
retrieving revision 1.174
diff -C2 -d -r1.173 -r1.174
*** Space.java 21 Sep 2007 08:23:12 -0000 1.173
--- Space.java 25 Sep 2007 08:45:48 -0000 1.174
***************
*** 1411,1415 ****
res.add(new Attribute("ID", getId().toString(), false));
res.add(new Attribute("Owner", getOwner(), false));
! if (isConstructionSpace()) {
if (isTransparent()) {
res.add(new Attribute("Transparent", Boolean.TRUE));
--- 1411,1415 ----
res.add(new Attribute("ID", getId().toString(), false));
res.add(new Attribute("Owner", getOwner(), false));
! if (isConstructionSpace() || isFunctionalSpace()) {
if (isTransparent()) {
res.add(new Attribute("Transparent", Boolean.TRUE));
|