Coverage Report - pt.digitalis.dif.dem.objects.FeatureState
 
Classes in this File Line Coverage Branch Coverage Complexity
FeatureState
0%
0/5
N/A
0
 
 1  0
 /**
 2  
  * 2014, 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  
  * Defintion of the state of a feature
 10  
  * 
 11  
  * @author Pedro Viegas <a href="mailto:pviegas@digitalis.pt">pviegas@digitalis.pt</a><br/>
 12  
  * @created 28/01/2014
 13  
  */
 14  0
 public enum FeatureState {
 15  
     /** Feature is on or off according to it's default defined value */
 16  0
     DEFAULT,
 17  
     /** Feature is OFF */
 18  0
     OFF,
 19  
     /** Feature is ON */
 20  0
     ON;
 21  
 }