linkAllDirectedEdges method

void linkAllDirectedEdges()

Link the DirectedEdges at the nodes of the graph. This allows clients to link only a subset of nodes in the graph, for efficiency (because they know that only a subset is of interest).

Implementation

void linkAllDirectedEdges() {
  for (Iterator nodeit = nodes.iterator(); nodeit.moveNext();) {
    Node node = nodeit.current as Node;
    (node.getEdges() as DirectedEdgeStar).linkAllDirectedEdges();
  }
}