Esempio n. 1
0
 @UiHandler("userBtn")
 void onUserBtnClicked(ClickEvent event) {
   ActionEvent.fire(eventBus, ActionNames.USER);
 }
Esempio n. 2
0
 @Override
 public void onClick(ClickEvent event) {
   ActBtn actBtn = (ActBtn) event.getSource();
   ActionEvent.fire(eventBus, actBtn.actionName);
 }
Esempio n. 3
0
 @UiHandler("logOutBtn")
 void onLogOutBtnClicked(ClickEvent event) {
   ActionEvent.fire(eventBus, ActionNames.LOGOUT);
 }