Package org.activiti.explorer.ui.form.FormPropertiesForm

Examples of org.activiti.explorer.ui.form.FormPropertiesForm.FormPropertiesEvent


  private static final long serialVersionUID = 7560512657831865244L;

  public final void componentEvent(Event event) {
    if(event instanceof FormPropertiesEvent) {
      FormPropertiesEvent propertyEvent = (FormPropertiesEvent) event;
      if(FormPropertiesEvent.TYPE_SUBMIT.equals(propertyEvent.getType())) {
        handleFormSubmit(propertyEvent);
      } else {
        handleFormCancel(propertyEvent);
      }
    }
View Full Code Here

TOP

Related Classes of org.activiti.explorer.ui.form.FormPropertiesForm.FormPropertiesEvent

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.