Package org.opentripplanner.routing.edgetype

Examples of org.opentripplanner.routing.edgetype.FreeEdge


    public int hashCode() {
        return getCoordinate().hashCode();
    }

    public void addExtraEdgeTo(Vertex target) {
        extra.add(new FreeEdge(this, target));
        extra.add(new FreeEdge(target, this));
    }
View Full Code Here


        continue;

      TPOfflineNearbyStopsVertex vNearby = new TPOfflineNearbyStopsVertex(
          _context, nearbyStop, walkTime, instances);

      edges.add(new FreeEdge(this, vNearby));
    }

    return edges;
  }
View Full Code Here

TOP

Related Classes of org.opentripplanner.routing.edgetype.FreeEdge

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.