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

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


  @Override
  public void onModuleLoad() {
   
    HistoryContextManager manager = new HistoryContextManager();

    StopFinderWidget widget = new StopFinderWidget();
    widget.setTitleWidget(new TitleWidget());

    StopFinderPresenter stopFinder = new StopFinderPresenter(manager);

    widget.setStopFinder(stopFinder);
    stopFinder.setWidget(widget);

    StandardApplicationContainer.add(widget);

    StyleInjector.inject(WhereStopFinderStandardResources.INSTANCE.getCSS().getText());
View Full Code Here


  @Override
  public void handleOperation(OperationContext context) {

    _context = context;

    StopFinderWidget widget = context.getWidget();
    widget.setSearchText(_query);

    LatLng center = _point;
   
    if( center == null) {
      MapWidget map = context.getMap();
View Full Code Here

TOP

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

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.