Clover Coverage Report - Kuali Student 1.1-SNAPSHOT (Aggregated)
Coverage timestamp: Thu Mar 3 2011 04:02:59 EST
../../../../../../img/srcFileCovDistChart10.png 0% of files have more coverage
7   78   7   1
0   39   1   7
7     1  
1    
 
  ReqCompFieldInfo       Line # 31 7 0% 7 0 100% 1.0
 
  (29)
 
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.core.statement.dto;
17   
18    import java.io.Serializable;
19   
20    import javax.xml.bind.annotation.XmlAccessType;
21    import javax.xml.bind.annotation.XmlAccessorType;
22    import javax.xml.bind.annotation.XmlAttribute;
23    import javax.xml.bind.annotation.XmlElement;
24   
25    import org.kuali.student.core.dto.Idable;
26   
27    /**
28    *Detailed information about a requirement component field value.
29    */
30    @XmlAccessorType(XmlAccessType.FIELD)
 
31    public class ReqCompFieldInfo implements Serializable, Idable {
32   
33    private static final long serialVersionUID = 1L;
34   
35    @XmlAttribute
36    private String id;
37   
38    @XmlAttribute
39    private String type;
40   
41    @XmlElement
42    private String value;
43   
44    /**
45    * Unique identifier for a requirement component field type.
46    */
 
47  2 toggle public String getId() {
48  2 return id;
49    }
50   
 
51  153 toggle public void setId(String id) {
52  153 this.id = id;
53    }
54   
 
55  613 toggle public String getType() {
56  613 return type;
57    }
58   
 
59  155 toggle public void setType(String type) {
60  155 this.type = type;
61    }
62   
63    /**
64    * Value for this requirement component field.
65    */
 
66  613 toggle public String getValue() {
67  613 return value;
68    }
69   
 
70  155 toggle public void setValue(String value) {
71  155 this.value = value;
72    }
73   
 
74  2 toggle @Override
75    public String toString() {
76  2 return "ReqCompFieldInfo[id=" + id + ", value=" + value + "]";
77    }
78    }