Package com.puppetlabs.geppetto.catalog

Examples of com.puppetlabs.geppetto.catalog.CatalogEdge


    }

    @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;
    }
View Full Code Here

TOP

Related Classes of com.puppetlabs.geppetto.catalog.CatalogEdge

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.