Package org.activiti.explorer.ui.event

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


                imapPassword.getValue().toString(),
                "server", imapServer.getValue().toString(),
                "port", imapPort.getValue().toString(),
                "ssl", imapPort.getValue().toString()
                );
        fireEvent(new SubmitEvent(AccountSelectionPopup.this, SubmitEvent.SUBMITTED, accountDetails));
      }
    };
  }
View Full Code Here


                "alfresco",
                alfrescoUserName.getValue().toString(),
                alfrescoPassword.getValue().toString(),
                "server", alfrescoServer.getValue().toString()
                );
        fireEvent(new SubmitEvent(AccountSelectionPopup.this, SubmitEvent.SUBMITTED, accountDetails));
      }
    };
  }
View Full Code Here

  protected void saveAttachment() {
    try {
      // Creation and persistence of attachment is done in editor
      Attachment attachment = currentEditor.getAttachment();

      fireEvent(new SubmitEvent(this, SubmitEvent.SUBMITTED, attachment));

      // Finally, close window
      close();
    } catch (InvalidValueException ive) {
      // Validation error, Editor UI will handle this.
View Full Code Here

      } else {
        meButton.addListener(new ClickListener() {
          public void buttonClick(ClickEvent event) {
            addMatchingUser(loggedInUser.getId(), loggedInUser.getFullName());
            matchingUsersTable.select(loggedInUser.getId());
            fireEvent(new SubmitEvent(doneButton, SubmitEvent.SUBMITTED));
            close();
          }
        });
      }
    }
View Full Code Here

    doneButton = new Button("Done");
   
    doneButton.addListener(new ClickListener() {
      public void buttonClick(ClickEvent event) {
        // Fire event such that depending UI's can be updated
        fireEvent(new SubmitEvent(doneButton, SubmitEvent.SUBMITTED));
       
        // close popup window
        close();
      }
    });
View Full Code Here

  protected void saveAttachment() {
    try {
      // Creation and persistence of attachment is done in editor
      Attachment attachment = currentEditor.getAttachment();

      fireEvent(new SubmitEvent(this, SubmitEvent.SUBMITTED, attachment));

      // Finally, close window
      close();
    } catch (InvalidValueException ive) {
      // Validation error, Editor UI will handle this.
View Full Code Here

    addComponent(selectButton);
    ((VerticalLayout) getContent()).setComponentAlignment(selectButton, Alignment.BOTTOM_RIGHT);
   
    selectButton.addListener(new ClickListener() {
      public void buttonClick(ClickEvent event) {
        fireEvent(new SubmitEvent(selectButton, SubmitEvent.SUBMITTED));
        close();
      }
    });
  }
View Full Code Here

    addComponent(selectButton);
    ((VerticalLayout) getContent()).setComponentAlignment(selectButton, Alignment.BOTTOM_RIGHT);
   
    selectButton.addListener(new ClickListener() {
      public void buttonClick(ClickEvent event) {
        fireEvent(new SubmitEvent(selectButton, SubmitEvent.SUBMITTED));
        close();
      }
    });
  }
View Full Code Here

      } else {
        meButton.addListener(new ClickListener() {
          public void buttonClick(ClickEvent event) {
            addMatchingUser(loggedInUser.getId(), loggedInUser.getFullName());
            matchingUsersTable.select(loggedInUser.getId());
            fireEvent(new SubmitEvent(doneButton, SubmitEvent.SUBMITTED));
            close();
          }
        });
      }
    }
View Full Code Here

    doneButton = new Button("Done");
   
    doneButton.addListener(new ClickListener() {
      public void buttonClick(ClickEvent event) {
        // Fire event such that depending UI's can be updated
        fireEvent(new SubmitEvent(doneButton, SubmitEvent.SUBMITTED));
       
        // close popup window
        close();
      }
    });
View Full Code Here

TOP

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

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.