Coverage Report - org.kuali.student.enrollment.class2.grading.dataobject.GradeStudent
 
Classes in this File Line Coverage Branch Coverage Complexity
GradeStudent
0%
0/27
0%
0/2
1.059
 
 1  
 package org.kuali.student.enrollment.class2.grading.dataobject;
 2  
 
 3  
 /*
 4  
  * Copyright 2007 The Kuali Foundation Licensed under the Educational Community
 5  
  * License, Version 1.0 (the "License"); you may not use this file except in
 6  
  * compliance with the License. You may obtain a copy of the License at
 7  
  * http://www.opensource.org/licenses/ecl1.php Unless required by applicable law
 8  
  * or agreed to in writing, software distributed under the License is
 9  
  * distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 10  
  * KIND, either express or implied. See the License for the specific language
 11  
  * governing permissions and limitations under the License.
 12  
  */
 13  
 
 14  
 import org.kuali.student.enrollment.grading.dto.GradeRosterEntryInfo;
 15  
 import org.kuali.student.enrollment.grading.dto.GradeValuesGroupInfo;
 16  
 import org.kuali.student.r2.lum.lrc.dto.ResultValueInfo;
 17  
 
 18  
 import java.io.Serializable;
 19  
 import java.util.ArrayList;
 20  
 import java.util.List;
 21  
 
 22  
 public class GradeStudent implements Serializable {
 23  
 
 24  
     private String studentId;
 25  
     private String firstName;
 26  
     private String lastName;
 27  
 
 28  
     private String selectedGrade;
 29  
 
 30  
     private boolean percentGrade;
 31  
 
 32  
     private List<ResultValueInfo> availabeGradingOptions;
 33  
 
 34  
     private List<GradeValuesGroupInfo> gradeValuesGroupInfoList;
 35  
 
 36  
     private GradeRosterEntryInfo gradeRosterEntryInfo;
 37  
 
 38  0
     public GradeStudent() {}
 39  
 
 40  
     public String getFirstName() {
 41  0
         return firstName;
 42  
     }
 43  
 
 44  
     public void setFirstName(String firstName) {
 45  0
         this.firstName = firstName;
 46  0
     }
 47  
 
 48  
     public String getLastName() {
 49  0
         return lastName;
 50  
     }
 51  
 
 52  
     public void setLastName(String lastName) {
 53  0
         this.lastName = lastName;
 54  0
     }
 55  
 
 56  
     public String getStudentId() {
 57  0
         return studentId;
 58  
     }
 59  
 
 60  
     public void setStudentId(String studentId) {
 61  0
         this.studentId = studentId;
 62  0
     }
 63  
 
 64  
     public List<ResultValueInfo> getAvailabeGradingOptions() {
 65  0
         if (availabeGradingOptions == null) {
 66  0
             availabeGradingOptions = new ArrayList();
 67  
         }
 68  0
         return availabeGradingOptions;
 69  
     }
 70  
 
 71  
     public void setAvailabeGradingOptions(List<ResultValueInfo> availabeGradingOptions) {
 72  0
         this.availabeGradingOptions = availabeGradingOptions;
 73  0
     }
 74  
 
 75  
     public String getSelectedGrade() {
 76  0
         return selectedGrade;
 77  
     }
 78  
 
 79  
     public void setSelectedGrade(String selectedGrade) {
 80  0
         this.selectedGrade = selectedGrade;
 81  0
     }
 82  
 
 83  
     public boolean isPercentGrade() {
 84  0
         return percentGrade;
 85  
     }
 86  
 
 87  
     public void setPercentGrade(boolean percentGrade) {
 88  0
         this.percentGrade = percentGrade;
 89  0
     }
 90  
 
 91  
     public List<GradeValuesGroupInfo> getGradeValuesGroupInfoList() {
 92  0
         return gradeValuesGroupInfoList;
 93  
     }
 94  
 
 95  
     public void setGradeValuesGroupInfoList(List<GradeValuesGroupInfo> resultValuesGroupInfoList) {
 96  0
         this.gradeValuesGroupInfoList = resultValuesGroupInfoList;
 97  0
     }
 98  
 
 99  
     public GradeRosterEntryInfo getGradeRosterEntryInfo() {
 100  0
         return gradeRosterEntryInfo;
 101  
     }
 102  
 
 103  
     public void setGradeRosterEntryInfo(GradeRosterEntryInfo gradeRosterEntryInfo) {
 104  0
         this.gradeRosterEntryInfo = gradeRosterEntryInfo;
 105  0
     }
 106  
 }