|
@@ -16,7 +16,7 @@ import classes.HolonObject;
|
|
import classes.HolonSwitch;
|
|
import classes.HolonSwitch;
|
|
import classes.HolonTransformer;
|
|
import classes.HolonTransformer;
|
|
import ui.model.Model;
|
|
import ui.model.Model;
|
|
-import ui.model.idCounter;
|
|
|
|
|
|
+import ui.model.IdCounter;
|
|
|
|
|
|
public class StoreController {
|
|
public class StoreController {
|
|
|
|
|
|
@@ -38,7 +38,7 @@ public class StoreController {
|
|
JSONObject json = new JSONObject();
|
|
JSONObject json = new JSONObject();
|
|
|
|
|
|
json.put("MODE", "ALL");
|
|
json.put("MODE", "ALL");
|
|
- json.put("ID", idCounter.getCounter());
|
|
|
|
|
|
+ json.put("ID", IdCounter.getCounter());
|
|
writeCategory(json);
|
|
writeCategory(json);
|
|
writeCategoryObjects(json);
|
|
writeCategoryObjects(json);
|
|
writeCanvasObjects(json);
|
|
writeCanvasObjects(json);
|
|
@@ -60,7 +60,7 @@ public class StoreController {
|
|
JSONObject json = new JSONObject();
|
|
JSONObject json = new JSONObject();
|
|
|
|
|
|
json.put("MODE", "CANVAS");
|
|
json.put("MODE", "CANVAS");
|
|
- json.put("ID", idCounter.getCounter());
|
|
|
|
|
|
+ json.put("ID", IdCounter.getCounter());
|
|
writeCanvasObjects(json);
|
|
writeCanvasObjects(json);
|
|
writeCanvasElements(json);
|
|
writeCanvasElements(json);
|
|
writeEdges(json);
|
|
writeEdges(json);
|