Package org.onebusaway.transit_data_federation.impl.transit_graph

Examples of org.onebusaway.transit_data_federation.impl.transit_graph.BlockTripEntryImpl


    checkTripsHaveSameServiceids(trips);

    _trips = trips;
    for (BlockTripEntry trip : trips) {
      BlockTripEntryImpl tripImpl = (BlockTripEntryImpl) trip;
      tripImpl.setPattern(this);
    }
  }
View Full Code Here


    return blockConfig;
  }

  public static BlockTripEntryImpl blockTrip(
      BlockConfigurationEntry blockConfig, TripEntry trip) {
    BlockTripEntryImpl blockTrip = new BlockTripEntryImpl();
    blockTrip.setBlockConfiguration(blockConfig);
    blockTrip.setTrip(trip);
    return blockTrip;
  }
View Full Code Here

TOP

Related Classes of org.onebusaway.transit_data_federation.impl.transit_graph.BlockTripEntryImpl

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.