Class SourceGraphIterator

Object
AbstractGraphIterator
SourceGraphIterator
All Implemented Interfaces:
GraphIterator
Direct Known Subclasses:
AStarIterator, BreadthFirstIterator, DijkstraIterator, NoBifurcationIterator

public abstract class SourceGraphIterator extends AbstractGraphIterator
A GraphIterator that starts iteration from a specefied point.
Author:
Justin Deoliveira, Refractions Research Inc, jdeolive@refractions.net
  • Constructor Details

    • SourceGraphIterator

      public SourceGraphIterator()
  • Method Details

    • setSource

      public void setSource(Graphable source)
      Sets the source for the iteration.
      Parameters:
      source - The source of the iteration.
    • getSource

      public Graphable getSource()
      Returns the source of the iteration.
      Returns:
      The source of the iteration.