net.sf.javagimmicks.graph.routing.AbstractRouteFinder Maven / Gradle / Ivy
package net.sf.javagimmicks.graph.routing;
import net.sf.javagimmicks.graph.Edge;
import net.sf.javagimmicks.graph.Graph;
/**
* An very simple abstract {@link RouteFinder} that holds a reference to the
* {@link Graph} where to find {@link Route}s.
*/
public abstract class AbstractRouteFinder> implements RouteFinder
{
protected final Graph _graph;
protected AbstractRouteFinder(final Graph graph)
{
_graph = graph;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy