Package org.onebusaway.gtfs.model.calendar

Examples of org.onebusaway.gtfs.model.calendar.ServiceDate.previous()


            LOG.warn("RoutingContext has no CalendarService. Transit will never be boarded.");
            return;
        }

        for (String agency : graph.getAgencyIds()) {
            addIfNotExists(this.serviceDays, new ServiceDay(graph, serviceDate.previous(),
                    calendarService, agency));
            addIfNotExists(this.serviceDays, new ServiceDay(graph, serviceDate, calendarService, agency));
            addIfNotExists(this.serviceDays, new ServiceDay(graph, serviceDate.next(),
                    calendarService, agency));
        }
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.