}
@Override
public CatalogEdge deserialize(JsonElement json, java.lang.reflect.Type typeOfT,
JsonDeserializationContext context) throws JsonParseException {
final CatalogEdge result = CatalogFactory.eINSTANCE.createCatalogEdge();
JsonObject jsonObj = json.getAsJsonObject();
result.setTarget(getString(jsonObj, "target"));
result.setSource(getString(jsonObj, "source"));
return result;
}