use of org.onebusaway.presentation.impl.AgencyWithCoverageBeanComparator in project onebusaway-application-modules by camsys.
the class AgenciesAction method execute.
@Override
@Actions({ @Action(value = "/where/iphone/agencies") })
public String execute() throws ServiceException {
_model = _transitDataService.getAgenciesWithCoverage();
Collections.sort(_model, new AgencyWithCoverageBeanComparator());
return SUCCESS;
}
Aggregations