org.opentripplanner.graph_builder.annotation.BikeRentalStationUnlinked Maven / Gradle / Ivy
package org.opentripplanner.graph_builder.annotation;
import org.opentripplanner.routing.vertextype.BikeRentalStationVertex;
public class BikeRentalStationUnlinked extends GraphBuilderAnnotation {
private static final long serialVersionUID = 1L;
public static final String FMT = "Bike rental station %s not near any streets; it will not be usable.";
private static final String HTMLFMT = "Bike rental station \"%s\" not near any streets; it will not be usable.";
final BikeRentalStationVertex station;
public BikeRentalStationUnlinked(BikeRentalStationVertex station){
this.station = station;
}
@Override
public String getHTMLMessage() {
return String.format(HTMLFMT, station.getLat(), station.getLon(), station);
}
@Override
public String getMessage() {
return String.format(FMT, station);
}
}