View Javadoc

1   /** 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  public enum IssueType {
20      
21      /** Issues of this type prevent the application from running.  */
22      ERROR,
23      
24      /** Issues of this type allow the application to run but might cause inconsistencies and erratic behavior. */
25      WARN,
26      
27      /** Just an information for the user.*/
28      INFO
29  
30  }