Clover Coverage Report - KS Common Impl 1.2-SNAPSHOT
Coverage timestamp: Thu Mar 3 2011 04:48:53 EST
../../../../../../img/srcFileCovDistChart6.png 30% of files have more coverage
12   67   12   1
0   50   1   12
12     1  
1    
 
  UILookupConfig       Line # 9 12 0% 12 10 58.3% 0.5833333
 
  (2)
 
1    package org.kuali.student.common.assembly.data;
2   
3    import java.util.List;
4   
5    import javax.xml.bind.annotation.XmlAccessType;
6    import javax.xml.bind.annotation.XmlAccessorType;
7   
8    @XmlAccessorType(XmlAccessType.FIELD)
 
9    public class UILookupConfig{
10   
11    private static final long serialVersionUID = 1L;
12   
13    protected UILookupData initialLookup;
14    protected List<UILookupData> additionalLookups;
15    private String name;
16    private String path;
17    private String dataType;
18    private String type;
19   
 
20  10 toggle public UILookupData getInitialLookup() {
21  10 return initialLookup;
22    }
23   
 
24  4 toggle public void setInitialLookup(UILookupData initialLookup) {
25  4 this.initialLookup = initialLookup;
26    }
27   
 
28  5 toggle public List<UILookupData> getAdditionalLookups() {
29  5 return additionalLookups;
30    }
31   
 
32  0 toggle public void setAdditionalLookups(List<UILookupData> additionalLookups) {
33  0 this.additionalLookups = additionalLookups;
34    }
35   
 
36  0 toggle public String getName() {
37  0 return name;
38    }
39   
 
40  0 toggle public void setName(String name) {
41  0 this.name = name;
42    }
43   
 
44  25 toggle public String getPath() {
45  25 return path;
46    }
47   
 
48  4 toggle public void setPath(String path) {
49  4 this.path = path;
50    }
51   
 
52  0 toggle public String getDataType() {
53  0 return dataType;
54    }
55   
 
56  0 toggle public void setDataType(String dataType) {
57  0 this.dataType = dataType;
58    }
59   
 
60  14 toggle public String getType () {
61  14 return type;
62    }
63   
 
64  4 toggle public void setType (String type) {
65  4 this.type = type;
66    }
67    }