Coverage Report - org.kuali.student.enrollment.grading.infc.AssignedGrade
 
Classes in this File Line Coverage Branch Coverage Complexity
AssignedGrade
N/A
N/A
1
 
 1  
 /**
 2  
  * Copyright 2010 The Kuali Foundation Licensed under the Educational Community License, Version 2.0 (the "License"); you may
 3  
  * not use this file except in compliance with the License. You may obtain a copy of the License at
 4  
  * http://www.osedu.org/licenses/ECL-2.0 Unless required by applicable law or agreed to in writing, software distributed
 5  
  * under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
 6  
  * implied. See the License for the specific language governing permissions and limitations under the License.
 7  
  */
 8  
 
 9  
 package org.kuali.student.enrollment.grading.infc;
 10  
 
 11  
 import org.kuali.student.r2.common.infc.HasAttributesAndMeta;
 12  
 import org.kuali.student.r2.common.infc.HasId;
 13  
 
 14  
 /**
 15  
  * Information about an assigned grade in a roster entry
 16  
  * 
 17  
  * @author Kuali Student Team (Kamal)
 18  
  */
 19  
 public interface AssignedGrade extends HasId, HasAttributesAndMeta {
 20  
 
 21  
     /**
 22  
      * Grade scale associated with the grade
 23  
      * 
 24  
      * @name Grade Scale Id
 25  
      * @impl maps to LearningResultRecord.resultValueGroupId in LRR
 26  
      */
 27  
     public String getGradeScaleId();
 28  
 
 29  
     /**
 30  
      * Assigned Grade value
 31  
      * 
 32  
      * @name Grade
 33  
      * @impl maps to ResultValue.value in LRC where resultValue.Id = LearningResultRecord.resultValueId in LRR. The
 34  
      *       resultSourceId in the LRR should be sourceId for manually entered grade source
 35  
      */
 36  
     public String getGrade();
 37  
 }