linkResultDirectedEdgesStatic static method

void linkResultDirectedEdgesStatic(
  1. List nodes
)

For nodes in the Collection, link the DirectedEdges at the node that are in the result. 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

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