use of org.onebusaway.transit_data_federation.impl.transit_graph.BlockTripEntryImpl in project onebusaway-application-modules by camsys.
the class UnitTestingSupport method blockTrip.
public static BlockTripEntryImpl blockTrip(BlockConfigurationEntry blockConfig, TripEntry trip) {
BlockTripEntryImpl blockTrip = new BlockTripEntryImpl();
blockTrip.setBlockConfiguration(blockConfig);
blockTrip.setTrip(trip);
return blockTrip;
}
Aggregations