Package org.onebusaway.uk.atco_cif.extensions.greater_manchester

Examples of org.onebusaway.uk.atco_cif.extensions.greater_manchester.GreaterManchesterTimetableRowListElement


    }
    LocationElement location = getLocationForId(stopId);
    if (location != null) {
      return getAtcoStop(location);
    }
    GreaterManchesterTimetableRowListElement rowList = _greaterManchesterRowListsByLocationId.get(stopId);
    if (rowList != null) {
      return getGreaterManchesterRowListStop(rowList);
    }
    throw new AtcoCifException("no stop found with id " + stopId);
  }
View Full Code Here


        AgencyAndId routeId = getRouteId(details.getOperatorId(),
            details.getRouteId());
        RouteMetadata metadata = getMetadataForRouteId(routeId);
        metadata.addNXRouteDetails(details);
      } else if (element instanceof GreaterManchesterTimetableRowListElement) {
        GreaterManchesterTimetableRowListElement rowList = (GreaterManchesterTimetableRowListElement) element;
        _greaterManchesterRowListsByLocationId.put(
            rowList.getLocationReference(), rowList);
      }
    }
View Full Code Here

TOP

Related Classes of org.onebusaway.uk.atco_cif.extensions.greater_manchester.GreaterManchesterTimetableRowListElement

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.