Clover Coverage Report - KS Common 1.3.0-SNAPSHOT (Aggregated)
Coverage timestamp: Thu Apr 28 2011 06:00:36 EDT
../../../../../../../img/srcFileCovDistChart0.png 0% of files have more coverage
2   57   2   1
0   17   1   2
2     1  
1    
 
  SearchSelector       Line # 35 2 0% 2 4 0% 0.0
 
No Tests
 
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    //
17    // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.0 in JDK 1.6
18    // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
19    // Any modifications to this file will be lost upon recompilation of the source schema.
20    // Generated on: 2008.10.21 at 02:14:18 PM PDT
21    //
22   
23   
24    package org.kuali.student.common.dictionary.old.dto;
25   
26    import java.io.Serializable;
27   
28    import javax.xml.bind.annotation.XmlAccessType;
29    import javax.xml.bind.annotation.XmlAccessorType;
30    import javax.xml.bind.annotation.XmlAttribute;
31   
32   
33   
34    @XmlAccessorType(XmlAccessType.FIELD)
 
35    public class SearchSelector implements Serializable{
36   
37    private static final long serialVersionUID = 1L;
38   
39    @XmlAttribute(required = true)
40    protected String key;
41   
42    /**
43    * Get search key
44    * @return search Key
45    */
 
46  0 toggle public String getKey() {
47  0 return key;
48    }
49   
50    /**
51    * Set search key
52    * @param key
53    */
 
54  0 toggle public void setKey(String key) {
55  0 this.key = key;
56    }
57    }