Update of /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/tool
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv5944/src/net/sourceforge/bprocessor/gl/tool
Modified Files:
SpaceTool.java
Log Message:
added set and get content to Modellor and its subclasses, most of them are just empty for now, but will come later
Index: SpaceTool.java
===================================================================
RCS file: /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/tool/SpaceTool.java,v
retrieving revision 1.48
retrieving revision 1.49
diff -C2 -d -r1.48 -r1.49
*** SpaceTool.java 10 Oct 2006 13:49:32 -0000 1.48
--- SpaceTool.java 10 Oct 2006 14:02:43 -0000 1.49
***************
*** 23,26 ****
--- 23,27 ----
import java.util.LinkedList;
import java.util.List;
+ import java.util.Map;
import java.util.Stack;
***************
*** 371,374 ****
--- 372,386 ----
return null;
}
+
+ /** @see net.sourceforge.bprocessor.model.modellor.Modellor#setContent(Map) */
+ public void setContent(Map m) {
+ // TODO Auto-generated method stub
+ }
+
+ /** @see net.sourceforge.bprocessor.model.modellor.Modellor#getContent() */
+ public Map getContent() {
+ // TODO Auto-generated method stub
+ return null;
+ }
}
|