Ejemplo n.º 1
0
 private void restoreLocations() {
   JSONArray jsonLocations = (JSONArray) json.get("locations");
   int size = jsonLocations.size();
   for (int i = 0; i < size; ++i) {
     JSONObject jsonLocation = (JSONObject) jsonLocations.get(i);
     Location location = Location.createFromJSON(jsonLocation);
     locations.add(location);
   }
 }