Package com.google.devtools.depan.eclipse.persist

Examples of com.google.devtools.depan.eclipse.persist.GraphModelXmlPersist


  protected void installGraphDocument(IFile file, GraphDocument graph) {
    loadedGraphs.put(file.getFullPath(), graph);
  }

  public static GraphDocument loadGraphDocument(IFile file) {
    GraphModelXmlPersist loader = new GraphModelXmlPersist();
    return loader.load(file.getRawLocationURI());
  }
View Full Code Here


    return loader.load(file.getRawLocationURI());
  }

  public static void saveGraphDocument(IFile file, GraphDocument graph)
      throws CoreException {
    GraphModelXmlPersist loader = new GraphModelXmlPersist();
    loader.save(file.getRawLocationURI(), graph);
    file.refreshLocal(IResource.DEPTH_ZERO, null);
  }
View Full Code Here

TOP

Related Classes of com.google.devtools.depan.eclipse.persist.GraphModelXmlPersist

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.