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

org.opentripplanner.model.json_serialization.WithGraph Maven / Gradle / Ivy

There is a newer version: 2.5.0
Show newest version
package org.opentripplanner.model.json_serialization;

import org.opentripplanner.routing.graph.Graph;

public class WithGraph {
    private Graph graph;
    private Object object;
    public WithGraph(Graph graph, Object object) {
        this.graph = graph;
        this.object = object;
    }
    public Graph getGraph() {
        return graph;
    }
    
    public Object getObject() {
        return object;
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy