Package org.opentripplanner.index.model

Examples of org.opentripplanner.index.model.TripTimeShort


            for (Stop currStop : table.pattern.stopPattern.stops) {
                if (currStop != stop) continue;
                for (ServiceDay sd : req.rctx.serviceDays) {
                    TripTimes tt = table.getNextTrip(state, sd, sidx, true);
                    if (tt != null) {
                        times.times.add(new TripTimeShort(tt, sidx, stop));
                    }
                }
                sidx++;
            }
            if ( ! times.times.isEmpty()) ret.add(times);
View Full Code Here

TOP

Related Classes of org.opentripplanner.index.model.TripTimeShort

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.