Coverage Report - org.kuali.student.core.statement.dto.ReqCompFieldInfo
 
Classes in this File Line Coverage Branch Coverage Complexity
ReqCompFieldInfo
0%
0/11
N/A
1
 
 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  0
 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  
     public String getId() {
 48  0
         return id;
 49  
     }
 50  
 
 51  
     public void setId(String id) {
 52  0
         this.id = id;
 53  0
     }
 54  
 
 55  
         public String getType() {
 56  0
                 return type;
 57  
         }
 58  
 
 59  
         public void setType(String type) {
 60  0
                 this.type = type;
 61  0
         }
 62  
 
 63  
     /**
 64  
      * Value for this requirement component field.
 65  
      */
 66  
     public String getValue() {
 67  0
         return value;
 68  
     }
 69  
 
 70  
     public void setValue(String value) {
 71  0
         this.value = value;
 72  0
     }
 73  
 
 74  
         @Override
 75  
         public String toString() {
 76  0
                 return "ReqCompFieldInfo[id=" + id + ", value=" + value + "]";
 77  
         }
 78  
 }