Coverage Report - org.kuali.student.enrollment.grading.dto.AssignedGradeInfo
 
Classes in this File Line Coverage Branch Coverage Complexity
AssignedGradeInfo
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.AssignedGrade;
 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 = "AssignedGradeInfo", propOrder = {"id", "gradeScaleId", "grade", "meta", "attributes", "_futureElements"})
 39  0
 public class AssignedGradeInfo extends HasAttributesAndMetaInfo implements AssignedGrade, Serializable  {
 40  
 
 41  
     @XmlAttribute
 42  
     private String id;
 43  
         
 44  
     @XmlElement 
 45  
     private String gradeScaleId;
 46  
     
 47  
     @XmlElement
 48  
     private String grade;
 49  
     
 50  
     @XmlAnyElement
 51  
     private List<Element> _futureElements;  
 52  
 
 53  
     private static final long serialVersionUID = 1L;
 54  
 
 55  
     public String getId() {
 56  0
         return id;
 57  
     }
 58  
 
 59  
     public String getGradeScaleId() {
 60  0
         return gradeScaleId;
 61  
     }
 62  
 
 63  
     public String getGrade() {
 64  0
         return grade;
 65  
     }
 66  
     
 67  
     public void setId(String id) {
 68  0
         this.id = id;
 69  0
     }
 70  
     
 71  
     public void setGradeScaleId(String gradeScaleId) {
 72  0
         this.gradeScaleId = gradeScaleId;
 73  0
     }
 74  
 
 75  
     public void setGrade(String grade) {
 76  0
         this.grade = grade;
 77  0
     }
 78  
     
 79  
     
 80  
 }