Update of /cvsroot/bprocessor/model/src/net/sourceforge/bprocessor/model/modellor
In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv12713/src/net/sourceforge/bprocessor/model/modellor
Modified Files:
Modellor.java
Log Message:
Index: Modellor.java
===================================================================
RCS file: /cvsroot/bprocessor/model/src/net/sourceforge/bprocessor/model/modellor/Modellor.java,v
retrieving revision 1.17
retrieving revision 1.18
diff -C2 -d -r1.17 -r1.18
*** Modellor.java 25 Jun 2009 22:17:30 -0000 1.17
--- Modellor.java 21 May 2010 06:42:51 -0000 1.18
***************
*** 171,175 ****
public void setContent(Map<String, Object> map) {
active = ((Boolean)map.get("active")).booleanValue();
- setSubContent(map);
}
--- 171,174 ----
***************
*** 181,199 ****
Map<String, Object> content = new HashMap<String, Object>();
content.put("active", Boolean.valueOf(active));
- this.getSubContent(content);
return content;
}
-
- /**
- * Abstract method for getting the implementing modellors content
- * @param map the map to put the content in
- */
- public abstract void getSubContent(Map<String, Object> map);
-
- /**
- * Abstact method for setting the content in extending classes
- * @param map The map containing the object setting
- */
- public abstract void setSubContent(Map<String, Object> map);
/**
--- 180,185 ----
|