Package com.mxgraph.io.graphml

Examples of com.mxgraph.io.graphml.mxGraphMlShapeEdge


   * @param v mxCell where data are obtained.
   */
  public static void addEdgeData(mxGraphMlEdge gmlEdge, mxCell v)
  {
    mxGraphMlData data = new mxGraphMlData();
    mxGraphMlShapeEdge dataShapeEdge = new mxGraphMlShapeEdge();

    data.setDataKey(mxGraphMlConstants.KEY_EDGE_ID);
    dataShapeEdge.setText(v.getValue() != null ? v.getValue().toString()
        : "");
    dataShapeEdge.setStyle(v.getStyle() != null ? v.getStyle() : "");

    data.setDataShapeEdge(dataShapeEdge);
    gmlEdge.setEdgeData(data);
  }
View Full Code Here

TOP

Related Classes of com.mxgraph.io.graphml.mxGraphMlShapeEdge

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.