Package org.gvt.util

Examples of org.gvt.util.GraphMLWriter


        ((ChsRootEditPart) main.getViewer().getRootEditPart().
          getChildren().get(0)).getModel();

      BufferedWriter xmlFile =
        new BufferedWriter(new FileWriter(fileName));
      GraphMLWriter writer = new GraphMLWriter();
      xmlFile.write(writer.writeXMLFile(root).toString());
      xmlFile.close();

      // mark save location in commandstack
      main.getEditDomain().getCommandStack().markSaveLocation();
    }
View Full Code Here

TOP

Related Classes of org.gvt.util.GraphMLWriter

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.