Coverage Report - pt.digitalis.dif.dem.objects.EventType
 
Classes in this File Line Coverage Branch Coverage Complexity
EventType
0%
0/8
N/A
0
 
 1  0
 /**
 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  0
 public enum EventType {
 15  
 
 16  
     /** An asynchronous Java and XML request */
 17  0
     AJAX_REQUEST,
 18  
 
 19  
     /** A document generation request */
 20  0
     DOCUMENT_TYPE,
 21  
 
 22  
     /** The submission of a form */
 23  0
     FORM_SUBMIT,
 24  
 
 25  
     /** The submission of a form, via AJAX */
 26  0
     FORM_SUBMIT_AJAX_REQUEST,
 27  
 
 28  
     /** The submission of a form with the save action */
 29  0
     FORM_SUBMIT_SAVE_ACTION,
 30  
 
 31  
     /** The validation logic of a form prior to submit */
 32  0
     FORM_VALIDATION;
 33  
 }