Clover Coverage Report - KS Common 1.2-SNAPSHOT (Aggregated)
Coverage timestamp: Thu Mar 3 2011 04:36:44 EST
../../../../../../img/srcFileCovDistChart8.png 26% of files have more coverage
14   76   14   1
0   55   1   14
14     1  
1    
 
  CommonLookup       Line # 8 14 0% 14 6 78.6% 0.78571427
 
  (3)
 
1    package org.kuali.student.common.dictionary.dto;
2   
3    import java.io.Serializable;
4    import java.util.List;
5   
6   
7   
 
8    public class CommonLookup implements Serializable {
9   
10    private static final long serialVersionUID = 1L;
11   
12    private String id; // unique ID of this lookup
13    private String name; // name of this search
14    private String desc;
15    private String searchTypeId;
16    private String resultReturnKey;
17    private String searchParamIdKey;
18    private List<CommonLookupParam> params;
19   
 
20  12 toggle public String getSearchTypeId() {
21  12 return searchTypeId;
22    }
23   
 
24  120 toggle public void setSearchTypeId(String searchTypeId) {
25  120 this.searchTypeId = searchTypeId;
26    }
27   
 
28  10 toggle public String getResultReturnKey() {
29  10 return resultReturnKey;
30    }
31   
 
32  108 toggle public void setResultReturnKey(String resultReturnKey) {
33  108 this.resultReturnKey = resultReturnKey;
34    }
35   
 
36  22 toggle public List<CommonLookupParam> getParams() {
37  22 return params;
38    }
39   
 
40  116 toggle public void setParams(List<CommonLookupParam> params) {
41  116 this.params = params;
42    }
43   
 
44  0 toggle public String getId() {
45  0 return id;
46    }
47   
 
48  108 toggle public void setId(String id) {
49  108 this.id = id;
50    }
51   
 
52  0 toggle public String getName() {
53  0 return name;
54    }
55   
 
56  102 toggle public void setName(String name) {
57  102 this.name = name;
58    }
59   
 
60  0 toggle public String getDesc() {
61  0 return desc;
62    }
63   
 
64  102 toggle public void setDesc(String desc) {
65  102 this.desc = desc;
66    }
67   
 
68  10 toggle public String getSearchParamIdKey() {
69  10 return searchParamIdKey;
70    }
71   
 
72  72 toggle public void setSearchParamIdKey(String searchParamIdKey) {
73  72 this.searchParamIdKey = searchParamIdKey;
74    }
75   
76    }