Examples of StopTimeV2Bean


Examples of org.onebusaway.api.model.transit.schedule.StopTimeV2Bean

    bean.setStopTime(getStopTime(blockStopTime.getStopTime()));
    return bean;
  }

  public StopTimeV2Bean getStopTime(StopTimeBean stopTime) {
    StopTimeV2Bean bean = new StopTimeV2Bean();
    bean.setArrivalTime(stopTime.getArrivalTime());
    bean.setDepartureTime(stopTime.getDepartureTime());
    bean.setDropOffType(stopTime.getDropOffType());
    bean.setPickupType(stopTime.getPickupType());

    bean.setStopId(stopTime.getStop().getId());
    addToReferences(stopTime.getStop());

    return bean;
  }
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.