Examples of BookmarkWithStopsBean


Examples of org.onebusaway.presentation.model.BookmarkWithStopsBean

    List<BookmarkWithStopsBean> beans = new ArrayList<BookmarkWithStopsBean>(
        bookmarks.size());

    for (BookmarkBean bookmark : bookmarks) {
      BookmarkWithStopsBean bean = new BookmarkWithStopsBean();
      bean.setId(bookmark.getId());
      bean.setName(bookmark.getName());
      bean.setStops(getStopsForStopIds(bookmark.getStopIds()));
      bean.setRoutes(getRoutesForRouteFilter(bookmark.getRouteFilter()));
      beans.add(bean);
    }

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