Package org.sonar.core.graph.graphson

Examples of org.sonar.core.graph.graphson.GraphsonReader


  private SnapshotGraph read(String data, String rootVertexId) {
    StringReader input = new StringReader(data);
    try {
      TinkerGraph graph = new TinkerGraph();
      new GraphsonReader().read(input, graph);
      return new SnapshotGraph(graph, rootVertexId);
    } catch (Exception e) {
      throw new IllegalStateException(e);
    }
  }
View Full Code Here

TOP

Related Classes of org.sonar.core.graph.graphson.GraphsonReader

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.