org.opentripplanner.graph_builder.module.stopsAlerts.AbstractStopTester Maven / Gradle / Ivy
package org.opentripplanner.graph_builder.module.stopsAlerts;
import org.opentripplanner.routing.graph.Graph;
import org.opentripplanner.routing.vertextype.TransitStopVertex;
public abstract class AbstractStopTester implements IStopTester{
String type;
public String getType(){
return this.type;
}
@Override
abstract public boolean fulfillDemands(TransitStopVertex ts, Graph graph);
}