Package org.activiti.explorer.ui.event

Examples of org.activiti.explorer.ui.event.ConfirmationEvent


    layout.setComponentAlignment(yesButton, Alignment.BOTTOM_RIGHT);
    yesButton.addListener(new ClickListener() {
      private static final long serialVersionUID = 1L;
      public void buttonClick(ClickEvent event) {
        close();
        fireEvent(new ConfirmationEvent(ConfirmationDialogPopupWindow.this, true));
      }
    });
   
    noButton = new Button(i18nManager.getMessage(Messages.CONFIRMATION_DIALOG_NO));
    layout.addComponent(noButton, 1, 1);
    layout.setComponentAlignment(noButton, Alignment.BOTTOM_LEFT);
    noButton.addListener(new ClickListener() {
      private static final long serialVersionUID = 1L;
      public void buttonClick(ClickEvent event) {
        close();
        fireEvent(new ConfirmationEvent(ConfirmationDialogPopupWindow.this, false));
      }
    });
  }
View Full Code Here

TOP

Related Classes of org.activiti.explorer.ui.event.ConfirmationEvent

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.