/** Return an iterator over the edges coming out of the given node.
* @param node The node, which is assumed to be an icon.
* @return A NullIterator, since no edges are attached to icons.
*/
public Iterator outEdges(Object node) {
return new NullIterator();
}