Clover Coverage Report - KS Common Impl 1.2-M1-SNAPSHOT
Coverage timestamp: Fri Mar 4 2011 04:52:17 EST
../../../../../../img/srcFileCovDistChart5.png 34% of files have more coverage
10   70   10   1
0   40   1   10
10     1  
1    
 
  LookupResultMetadata       Line # 20 10 0% 10 10 50% 0.5
 
  (3)
 
1    /**
2    * Copyright 2010 The Kuali Foundation Licensed under the
3    * Educational Community License, Version 2.0 (the "License"); you may
4    * not use this file except in compliance with the License. You may
5    * obtain a copy of the License at
6    *
7    * http://www.osedu.org/licenses/ECL-2.0
8    *
9    * Unless required by applicable law or agreed to in writing,
10    * software distributed under the License is distributed on an "AS IS"
11    * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
12    * or implied. See the License for the specific language governing
13    * permissions and limitations under the License.
14    */
15   
16    package org.kuali.student.common.assembly.data;
17   
18    import java.io.Serializable;
19   
 
20    public class LookupResultMetadata implements Serializable {
21   
22    private static final long serialVersionUID = 1L;
23   
24    private String key;
25    private String name;
26    private String desc;
27    private Data.DataType dataType;
28    private boolean hidden;
29   
 
30  0 toggle public String getName() {
31  0 return name;
32    }
33   
 
34  60 toggle public void setName(String name) {
35  60 this.name = name;
36    }
37   
 
38  0 toggle public String getDesc() {
39  0 return desc;
40    }
41   
 
42  60 toggle public void setDesc(String desc) {
43  60 this.desc = desc;
44    }
45   
 
46  0 toggle public Data.DataType getDataType() {
47  0 return dataType;
48    }
49   
 
50  60 toggle public void setDataType(Data.DataType dataType) {
51  60 this.dataType = dataType;
52    }
53   
 
54  0 toggle public String getKey() {
55  0 return key;
56    }
57   
 
58  60 toggle public void setKey(String key) {
59  60 this.key = key;
60    }
61   
 
62  0 toggle public boolean isHidden() {
63  0 return hidden;
64    }
65   
 
66  60 toggle public void setHidden(boolean hidden) {
67  60 this.hidden = hidden;
68    }
69   
70    }