Examples of SwitchModuleEvent


Examples of org.worldbank.transport.tamt.client.event.SwitchModuleEvent

    return new TripStatistics(this.eventBus);
 
 
  @UiHandler("studyRegionName")
  void onClickCancel(ClickEvent e) {
    eventBus.fireEvent(new SwitchModuleEvent(SwitchModuleEvent.REGION, true));
    eventBus.fireEvent(new LoadCurrentStudyRegionEvent());       
 
View Full Code Here

Examples of org.worldbank.transport.tamt.client.event.SwitchModuleEvent

    bind();
  }
 
  @UiHandler("studyRegionName")
  void onClickStudyRegionName(ClickEvent e) {
    eventBus.fireEvent(new SwitchModuleEvent(SwitchModuleEvent.REGION, true));
    eventBus.fireEvent(new LoadCurrentStudyRegionEvent());       
 
View Full Code Here

Examples of org.worldbank.transport.tamt.client.event.SwitchModuleEvent

    initWidget(uiBinder.createAndBindUi(this));
   
    bind();
   
    // select Home
    eventBus.fireEvent(new SwitchModuleEvent(SwitchModuleEvent.REGION, true));
  }
View Full Code Here

Examples of org.worldbank.transport.tamt.client.event.SwitchModuleEvent

    });
  }
 
  @UiHandler("tagNav")
  void onClickTag(ClickEvent e) {
    eventBus.fireEvent(new SwitchModuleEvent(SwitchModuleEvent.TAG, true));
  }
View Full Code Here

Examples of org.worldbank.transport.tamt.client.event.SwitchModuleEvent

    eventBus.fireEvent(new SwitchModuleEvent(SwitchModuleEvent.TAG, true));
  }
 
  @UiHandler("importNav")
  void onClickImport(ClickEvent e) {
    eventBus.fireEvent(new SwitchModuleEvent(SwitchModuleEvent.IMPORT, true));
  }
View Full Code Here

Examples of org.worldbank.transport.tamt.client.event.SwitchModuleEvent

    eventBus.fireEvent(new SwitchModuleEvent(SwitchModuleEvent.IMPORT, true));
  }
 
  @UiHandler("regionNav")
  void onClickRegion(ClickEvent e) {
    eventBus.fireEvent(new SwitchModuleEvent(SwitchModuleEvent.REGION, true));
  }
View Full Code Here

Examples of org.worldbank.transport.tamt.client.event.SwitchModuleEvent

    eventBus.fireEvent(new SwitchModuleEvent(SwitchModuleEvent.REGION, true));
  }
 
  @UiHandler("queryNav")
  void onClickQuery(ClickEvent e) {
    eventBus.fireEvent(new SwitchModuleEvent(SwitchModuleEvent.QUERY, true));
  }
View Full Code Here

Examples of org.worldbank.transport.tamt.client.event.SwitchModuleEvent

    eventBus.fireEvent(new SwitchModuleEvent(SwitchModuleEvent.QUERY, true));
  }
 
  @UiHandler("exportNav")
  void onClickExport(ClickEvent e) {
    eventBus.fireEvent(new SwitchModuleEvent(SwitchModuleEvent.EXPORT, true));
 
View Full Code Here

Examples of org.worldbank.transport.tamt.client.event.SwitchModuleEvent

    title.setStyleName("studyRegionLabel");
    studyRegion = new HTML("< Not Set >");
    studyRegion.addClickHandler(new ClickHandler() {
      @Override
      public void onClick(ClickEvent event) {
        eventBus.fireEvent(new SwitchModuleEvent(SwitchModuleEvent.REGION, true));
        eventBus.fireEvent(new LoadCurrentStudyRegionEvent());
      }
    });
   
    studyRegion.setStyleName("studyRegionTitle");
View Full Code Here

Examples of org.worldbank.transport.tamt.client.event.SwitchModuleEvent

    return new GPSTracesView(this.eventBus);
  }
 
  @UiHandler("studyRegionName")
  void onClickStudyRegionName(ClickEvent e) {
    eventBus.fireEvent(new SwitchModuleEvent(SwitchModuleEvent.REGION, true));
    eventBus.fireEvent(new LoadCurrentStudyRegionEvent());       
 
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.