12345678910111213141516171819202122232425262728293031323334 |
- package ui.controller;
- import com.google.gson.Gson;
- import com.google.gson.GsonBuilder;
- import org.json.simple.JSONArray;
- import org.json.simple.JSONObject;
- import ui.model.Model;
- import classes.HolonObject;
- public class TestNewStoreController {
- private Model model;
-
-
- public TestNewStoreController(Model model) {
- this.model = model;
-
- }
-
- public void writeSaveFile(String path) {
- Gson gson = new Gson();
- JSONObject json = new JSONObject();
-
- }
- }
|