TestNewStoreController.java 520 B

12345678910111213141516171819202122232425262728293031323334
  1. package ui.controller;
  2. import com.google.gson.Gson;
  3. import com.google.gson.GsonBuilder;
  4. import org.json.simple.JSONArray;
  5. import org.json.simple.JSONObject;
  6. import ui.model.Model;
  7. import classes.HolonObject;
  8. public class TestNewStoreController {
  9. private Model model;
  10. /**
  11. * Constructor
  12. *
  13. * @param model
  14. */
  15. public TestNewStoreController(Model model) {
  16. this.model = model;
  17. }
  18. public void writeSaveFile(String path) {
  19. Gson gson = new Gson();
  20. JSONObject json = new JSONObject();
  21. //
  22. }
  23. }