()
| 112 | } |
| 113 | |
| 114 | @Override |
| 115 | public String toJson() { |
| 116 | Gson gson = new Gson(); |
| 117 | return gson.toJson(this); |
| 118 | } |
| 119 | |
| 120 | public static Model fromJson(String json) throws DDFException { |
| 121 | Gson gson = new GsonBuilder().registerTypeAdapter(Model.class, new ModelDeserializer()).create(); |