Interface DirectedGraphable

All Superinterfaces:
Graphable
All Known Subinterfaces:
DirectedEdge, DirectedNode
All Known Implementing Classes:
BasicDirectedEdge, BasicDirectedNode, BasicDirectedXYNode, OptDirectedEdge, OptDirectedNode, OptDirectedXYNode

public interface DirectedGraphable extends Graphable
Reperesents a component in a directed graph.
Author:
Justin Deoliveira, Refractions Research Inc, jdeolive@refractions.net
See Also:
  • Method Details

    • getInRelated

      Iterator<? extends Graphable> getInRelated()
      Returns other components related through an in relationship.
      Returns:
      An iterator over the other directed components related through an in relationship.
      See Also:
    • getOutRelated

      Iterator<? extends Graphable> getOutRelated()
      Returns other components related through an out relationship.
      Returns:
      An iterator over the other directed components related through an out relationship.
      See Also: