Package org.onebusaway.uk.network_rail.gtfs_realtime

Examples of org.onebusaway.uk.network_rail.gtfs_realtime.FileMatcher


    _edgeLogPath = cli.getOptionValue(ARG_EDGE_LOG_PATH);

    _lifecycleService.start();

    File narrativePath = new File(cli.getOptionValue(ARG_NARRATIVE_PATH));
    FileMatcher matcher = new FileMatcher();
    matcher.setExtension(".pb");
    List<File> narrativeFiles = matcher.matchFiles(narrativePath);
    _log.info("files=" + narrativeFiles.size());

    _edgeLog = new BufferedWriter(new FileWriter(_edgeLogPath));

    int i = 0;
View Full Code Here

TOP

Related Classes of org.onebusaway.uk.network_rail.gtfs_realtime.FileMatcher

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.