Update of /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/model
In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv17529/src/net/sourceforge/bprocessor/gl/model
Modified Files:
SpaceBox.java
Log Message:
Renamed Space to Item and Container to Space
Index: SpaceBox.java
===================================================================
RCS file: /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/model/SpaceBox.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** SpaceBox.java 13 Dec 2007 12:00:49 -0000 1.3
--- SpaceBox.java 25 Jun 2009 22:17:39 -0000 1.4
***************
*** 9,13 ****
import net.sourceforge.bprocessor.model.Project;
! import net.sourceforge.bprocessor.model.Container;
/**
--- 9,13 ----
import net.sourceforge.bprocessor.model.Project;
! import net.sourceforge.bprocessor.model.Space;
/**
***************
*** 15,19 ****
*/
public class SpaceBox extends Label {
! private Container space;
/**
--- 15,19 ----
*/
public class SpaceBox extends Label {
! private Space space;
/**
***************
*** 21,25 ****
* @param space Space
*/
! public SpaceBox(Container space) {
super(space.getDisplayName());
this.space = space;
--- 21,25 ----
* @param space Space
*/
! public SpaceBox(Space space) {
super(space.getDisplayName());
this.space = space;
***************
*** 30,34 ****
* @return the space.
*/
! public Container space() {
return space;
}
--- 30,34 ----
* @return the space.
*/
! public Space space() {
return space;
}
|