Examples of StopProblemReportSummaryBean


Examples of org.onebusaway.transit_data.model.problems.StopProblemReportSummaryBean

        records.size());

    for (T2<AgencyAndId, Integer> record : records) {
      AgencyAndId stopId = record.getFirst();
      Integer count = record.getSecond();
      StopProblemReportSummaryBean bean = new StopProblemReportSummaryBean();
      bean.setStop(_stopBeanService.getStopForId(stopId));
      bean.setStatus(query.getStatus());
      bean.setCount(count);
      beans.add(bean);
    }

    return new ListBean<StopProblemReportSummaryBean>(beans, false);
  }
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.