Clover Coverage Report - Kuali Student 1.1-SNAPSHOT (Aggregated)
Coverage timestamp: Thu Mar 3 2011 04:02:59 EST
../../../../../../img/srcFileCovDistChart7.png 38% of files have more coverage
8   43   7   1.14
0   33   0.88   7
7     1  
1    
 
  WhenConstraint       Line # 10 8 0% 7 5 66.7% 0.6666667
 
  (6)
 
1    package org.kuali.student.core.dictionary.dto;
2   
3    import java.util.ArrayList;
4    import java.util.List;
5   
6    import javax.xml.bind.annotation.XmlAccessType;
7    import javax.xml.bind.annotation.XmlAccessorType;
8   
9    @XmlAccessorType(XmlAccessType.FIELD)
 
10    public class WhenConstraint {
11    protected List<Object> values;
12    protected String valuePath;
13    protected Constraint constraint;
14   
 
15  15 toggle public List<Object> getValues() {
16  15 return values;
17    }
18   
 
19  48 toggle public void setValues(List<Object> values) {
20  48 this.values = values;
21    }
22   
 
23  0 toggle public void setValue(Object value) {
24  0 values = new ArrayList<Object>();
25  0 values.add(value);
26    }
27   
 
28  7 toggle public String getValuePath() {
29  7 return valuePath;
30    }
31   
 
32  0 toggle public void setValuePath(String valuePath) {
33  0 this.valuePath = valuePath;
34    }
35   
 
36  8 toggle public Constraint getConstraint() {
37  8 return constraint;
38    }
39   
 
40  48 toggle public void setConstraint(Constraint constraint) {
41  48 this.constraint = constraint;
42    }
43    }