Package org.onebusaway.webapp.gwt.where_library.view

Examples of org.onebusaway.webapp.gwt.where_library.view.ResultsPanelManager


   ****/

  @Override
  public void onSuccess(CombinedSearchResult result) {

    ResultsPanelManager manager = new ResultsPanelManager(_context);

    if (result.isEmpty()) {
      manager.addNoResultsMessage();
      return;
    }

    manager.setResults(result);
  }
View Full Code Here


    public RouteHandler(OperationContext context) {
      _context = context;
    }

    public void onSuccess(RouteBean route) {
      ResultsPanelManager manager = new ResultsPanelManager(_context);
      manager.setResult(route);
    }
View Full Code Here

TOP

Related Classes of org.onebusaway.webapp.gwt.where_library.view.ResultsPanelManager

Copyright © 2018 www.massapicom. 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.