View Javadoc

1   /**
2    * 2008, Digitalis Informatica. All rights reserved. Distribuicao e Gestao de Informatica, Lda. Estrada de Paco de Arcos
3    * num.9 - Piso -1 2780-666 Paco de Arcos Telefone: (351) 21 4408990 Fax: (351) 21 4408999 http://www.digitalis.pt
4    */
5   
6   package pt.digitalis.dif.dem.objects;
7   
8   /**
9    * Defines the types for stage events handlers
10   * 
11   * @author Pedro Viegas <a href="mailto:pviegas@digitalis.pt">pviegas@digitalis.pt</a><br/>
12   * @created 2008/09/06
13   */
14  public enum EventType {
15  
16      /** An asynchronous Java and XML request */
17      AJAX_REQUEST,
18  
19      /** A document generation request */
20      DOCUMENT_TYPE,
21  
22      /** The submission of a form */
23      FORM_SUBMIT,
24  
25      /** The submission of a form, via AJAX */
26      FORM_SUBMIT_AJAX_REQUEST,
27  
28      /** The submission of a form with the save action */
29      FORM_SUBMIT_SAVE_ACTION,
30  
31      /** The validation logic of a form prior to submit */
32      FORM_VALIDATION;
33  }