Clover Coverage Report - KS Common 1.2-M6-SNAPSHOT (Aggregated)
Coverage timestamp: Mon Sep 12 2011 05:50:56 EDT
../../../../../../img/srcFileCovDistChart8.png 14% 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
 
  (4)
 
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  14 toggle public String getSearchTypeId() {
21  14 return searchTypeId;
22    }
23   
 
24  149 toggle public void setSearchTypeId(String searchTypeId) {
25  149 this.searchTypeId = searchTypeId;
26    }
27   
 
28  10 toggle public String getResultReturnKey() {
29  10 return resultReturnKey;
30    }
31   
 
32  136 toggle public void setResultReturnKey(String resultReturnKey) {
33  136 this.resultReturnKey = resultReturnKey;
34    }
35   
 
36  28 toggle public List<CommonLookupParam> getParams() {
37  28 return params;
38    }
39   
 
40  145 toggle public void setParams(List<CommonLookupParam> params) {
41  145 this.params = params;
42    }
43   
 
44  0 toggle public String getId() {
45  0 return id;
46    }
47   
 
48  136 toggle public void setId(String id) {
49  136 this.id = id;
50    }
51   
 
52  0 toggle public String getName() {
53  0 return name;
54    }
55   
 
56  128 toggle public void setName(String name) {
57  128 this.name = name;
58    }
59   
 
60  0 toggle public String getDesc() {
61  0 return desc;
62    }
63   
 
64  128 toggle public void setDesc(String desc) {
65  128 this.desc = desc;
66    }
67   
 
68  22 toggle public String getSearchParamIdKey() {
69  22 return searchParamIdKey;
70    }
71   
 
72  96 toggle public void setSearchParamIdKey(String searchParamIdKey) {
73  96 this.searchParamIdKey = searchParamIdKey;
74    }
75   
76    }