Coverage Report - pt.digitalis.dif.dem.objects.issues.IssueType
 
Classes in this File Line Coverage Branch Coverage Complexity
IssueType
0%
0/5
N/A
0
 
 1  0
 /** 2008, Digitalis Informatica. All rights reserved.
 2  
  * 
 3  
  * Distribuicao e Gestao de Informatica, Lda.
 4  
  * Estrada de Paco de Arcos num.9 - Piso -1
 5  
  * 2780-666 Paco de Arcos
 6  
  * Telefone: (351) 21 4408990
 7  
  * Fax: (351) 21 4408999
 8  
  * http://www.digitalis.pt 
 9  
  */
 10  
 
 11  
 package pt.digitalis.dif.dem.objects.issues;
 12  
 
 13  
 /**
 14  
  * Defines the issue types.
 15  
  * 
 16  
  * @author Rodrigo Gonçalves <a href="mailto:rgoncalves@digitalis.pt">rgoncalves@digitalis.pt</a><br/>
 17  
  * @created 2008/11/13
 18  
  */
 19  0
 public enum IssueType {
 20  
     
 21  
     /** Issues of this type prevent the application from running.  */
 22  0
     ERROR,
 23  
     
 24  
     /** Issues of this type allow the application to run but might cause inconsistencies and erratic behavior. */
 25  0
     WARN,
 26  
     
 27  
     /** Just an information for the user.*/
 28  0
     INFO
 29  
 
 30  
 }