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.issues;
7   
8   /**
9    * Defines the possible issue scopes.
10   * 
11   * @author Rodrigo Gonçalves <a href="mailto:rgoncalves@digitalis.pt">rgoncalves@digitalis.pt</a><br/>
12   * @created 2008/11/13
13   */
14  public enum IssueScope {
15  
16      /** Load time issue. */
17      LOADTIME,
18  
19      /** Run time issue. */
20      RUNTIME
21  
22  }