Clover Coverage Report - KS Common 1.3.0-SNAPSHOT (Aggregated)
Coverage timestamp: Thu Apr 28 2011 06:00:36 EDT
../../../../../../img/srcFileCovDistChart0.png 0% of files have more coverage
8   51   8   1
0   39   1   8
8     1  
1    
 
  LookupConstraintParamMapping       Line # 10 8 0% 8 16 0% 0.0
 
No Tests
 
1    package org.kuali.student.common.dictionary.dto;
2   
3    import java.util.List;
4   
5    import javax.xml.bind.annotation.XmlAccessType;
6    import javax.xml.bind.annotation.XmlAccessorType;
7    import javax.xml.bind.annotation.XmlElement;
8   
9    @XmlAccessorType(XmlAccessType.FIELD)
 
10    public class LookupConstraintParamMapping {
11    @XmlElement
12    protected String fieldPath;
13    @XmlElement
14    protected String paramKey;
15    @XmlElement
16    protected List<String> defaultValueList;
17    @XmlElement
18    protected String defaultValueString;
19   
 
20  0 toggle public String getFieldPath() {
21  0 return fieldPath;
22    }
23   
 
24  0 toggle public void setFieldPath(String fieldPath) {
25  0 this.fieldPath = fieldPath;
26    }
27   
 
28  0 toggle public String getParamKey() {
29  0 return paramKey;
30    }
31   
 
32  0 toggle public void setParamKey(String paramKey) {
33  0 this.paramKey = paramKey;
34    }
35   
 
36  0 toggle public List<String> getDefaultValueList() {
37  0 return defaultValueList;
38    }
39   
 
40  0 toggle public void setDefaultValueList(List<String> defaultValueList) {
41  0 this.defaultValueList = defaultValueList;
42    }
43   
 
44  0 toggle public String getDefaultValueString() {
45  0 return defaultValueString;
46    }
47   
 
48  0 toggle public void setDefaultValueString(String defaultValueString) {
49  0 this.defaultValueString = defaultValueString;
50    }
51    }