Coverage Report - org.kuali.student.enrollment.grading.dto.CreditsEarnedInfo
 
Classes in this File Line Coverage Branch Coverage Complexity
CreditsEarnedInfo
0%
0/10
N/A
1
 
 1  
 /*
 2  
  * Copyright 2007 The Kuali Foundation
 3  
  *
 4  
  * Licensed under the Educational Community License, Version 1.0 (the "License");
 5  
  * you may not use this file except in compliance with the License.
 6  
  * You may obtain a copy of the License at
 7  
  *
 8  
  * http://www.opensource.org/licenses/ecl1.php
 9  
  *
 10  
  * Unless required by applicable law or agreed to in writing, software
 11  
  * distributed under the License is distributed on an "AS IS" BASIS,
 12  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 13  
  * See the License for the specific language governing permissions and
 14  
  * limitations under the License.
 15  
  */
 16  
 package org.kuali.student.enrollment.grading.dto;
 17  
 
 18  
 import java.io.Serializable;
 19  
 import java.util.List;
 20  
 
 21  
 import javax.xml.bind.annotation.XmlAccessType;
 22  
 import javax.xml.bind.annotation.XmlAccessorType;
 23  
 import javax.xml.bind.annotation.XmlAnyElement;
 24  
 import javax.xml.bind.annotation.XmlAttribute;
 25  
 import javax.xml.bind.annotation.XmlElement;
 26  
 import javax.xml.bind.annotation.XmlType;
 27  
 
 28  
 import org.kuali.student.enrollment.grading.infc.CreditsEarned;
 29  
 import org.kuali.student.r2.common.dto.HasAttributesAndMetaInfo;
 30  
 import org.w3c.dom.Element;
 31  
 
 32  
 /**
 33  
  * 
 34  
  * @author Kuali Student Team (Kamal)
 35  
  *
 36  
  */
 37  
 @XmlAccessorType(XmlAccessType.FIELD)
 38  
 @XmlType(name = "CreditsEarnedInfo", propOrder = {"id", "creditGroupId", "credit", "meta", "attributes", "_futureElements"})
 39  0
 public class CreditsEarnedInfo extends HasAttributesAndMetaInfo implements CreditsEarned, Serializable  {
 40  
 
 41  
     private static final long serialVersionUID = 1L;
 42  
 
 43  
     @XmlAttribute
 44  
     private String id;
 45  
 
 46  
     @XmlElement 
 47  
     private String creditGroupId;
 48  
     
 49  
     @XmlElement
 50  
     private String credit;
 51  
     
 52  
     @XmlAnyElement
 53  
     private List<Element> _futureElements;
 54  
 
 55  
     public String getId() {
 56  0
         return id;
 57  
     }
 58  
 
 59  
     public void setId(String id) {
 60  0
         this.id = id;
 61  0
     }
 62  
 
 63  
     public String getCreditGroupId() {
 64  0
         return creditGroupId;
 65  
     }
 66  
 
 67  
     public String getCredit() {
 68  0
         return credit;
 69  
     }
 70  
 
 71  
     public void setCreditGroupId(String creditGroupId) {
 72  0
         this.creditGroupId = creditGroupId;
 73  0
     }
 74  
 
 75  
     public void setCredit(String credit) {
 76  0
         this.credit = credit;
 77  0
     }            
 78  
 }