Examples of TripsModelInfo


Examples of org.opentripplanner.api.adapters.TripsModelInfo

    public List<PatternInterlineDwell> getInterlines() {
        return interlines;
    }

    public void addTrip(Trip trip, int number) {
        this.trips.add(new TripsModelInfo(trip.getTripHeadsign(), number, trip.getServiceId()
                .getId(), trip.getId()));
        if (direction == null) {
            direction = trip.getDirectionId();
        } else {
            if (!direction.equals(trip.getDirectionId())) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.