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; /** * Constructor * * @param model */ public TestNewStoreController(Model model) { this.model = model; } public void writeSaveFile(String path) { Gson gson = new Gson(); JSONObject json = new JSONObject(); // } }