net.sf.javagimmicks.graph.routing.AbstractRouteFinder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gimmicks Show documentation
Show all versions of gimmicks Show documentation
Utility classes, APIs and tools for Java
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