Package att.grappa

Examples of att.grappa.Edge


  public String toString() {
    return getSource().toString() + "->" + getSink().toString();
  }

  public void addToGraph(Graph graph, Node source, Node sink) {
    Edge dotEdge = new Edge(graph, source, sink);
    dotEdge.setAttribute(Edge.LABEL_ATTR, label.getLabel());
  }
View Full Code Here

TOP

Related Classes of att.grappa.Edge

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.