All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.opentripplanner.graph_builder.annotation.Graphwide Maven / Gradle / Ivy

package org.opentripplanner.graph_builder.annotation;

public class Graphwide extends GraphBuilderAnnotation {

    private static final long serialVersionUID = 1L;

    String message;
    
    public Graphwide(String message){
    	this.message = message;
    }

    @Override
    public String getMessage() {
        return String.format("graph-wide: " + message);
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy