Clover Coverage Report - Kuali Student 1.2-M4-SNAPSHOT (Aggregated)
Coverage timestamp: Wed Jul 20 2011 11:14:35 EDT
../../../../../../img/srcFileCovDistChart5.png 35% of files have more coverage
2   27   2   1
0   16   1   2
2     1  
1    
 
  LookupConstraint       Line # 12 2 0% 2 2 50% 0.5
 
  (2)
 
1    package org.kuali.student.common.dictionary.dto;
2   
3    import javax.xml.bind.annotation.XmlAccessType;
4    import javax.xml.bind.annotation.XmlAccessorType;
5    import javax.xml.bind.annotation.XmlElement;
6   
7    import org.kuali.student.common.validation.dto.ValidationResultInfo.ErrorLevel;
8   
9   
10   
11    @XmlAccessorType(XmlAccessType.FIELD)
 
12    public class LookupConstraint extends CommonLookup{
13   
14    private static final long serialVersionUID = 1L;
15   
16    @XmlElement
17    protected ErrorLevel errorLevel = ErrorLevel.ERROR;
18   
 
19  8 toggle public ErrorLevel getErrorLevel() {
20  8 return errorLevel;
21    }
22   
 
23  0 toggle public void setErrorLevel(ErrorLevel errorLevel) {
24  0 this.errorLevel = errorLevel;
25    }
26   
27    }