Clover Coverage Report - Kuali Student 1.2-M5-SNAPSHOT (Aggregated)
Coverage timestamp: Mon Aug 29 2011 05:04:27 EDT
../../../../../../img/srcFileCovDistChart8.png 29% of files have more coverage
12   67   12   1
0   50   1   12
12     1  
1    
 
  UILookupConfig       Line # 9 12 0% 12 6 75% 0.75
 
  (4)
 
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  18 toggle public UILookupData getInitialLookup() {
21  18 return initialLookup;
22    }
23   
 
24  30 toggle public void setInitialLookup(UILookupData initialLookup) {
25  30 this.initialLookup = initialLookup;
26    }
27   
 
28  10 toggle public List<UILookupData> getAdditionalLookups() {
29  10 return additionalLookups;
30    }
31   
 
32  12 toggle public void setAdditionalLookups(List<UILookupData> additionalLookups) {
33  12 this.additionalLookups = additionalLookups;
34    }
35   
 
36  0 toggle public String getName() {
37  0 return name;
38    }
39   
 
40  4 toggle public void setName(String name) {
41  4 this.name = name;
42    }
43   
 
44  66 toggle public String getPath() {
45  66 return path;
46    }
47   
 
48  32 toggle public void setPath(String path) {
49  32 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  21 toggle public String getType () {
61  21 return type;
62    }
63   
 
64  4 toggle public void setType (String type) {
65  4 this.type = type;
66    }
67    }