Coverage Report - org.kuali.student.enrollment.class2.grading.form.StudentGradeForm
 
Classes in this File Line Coverage Branch Coverage Complexity
StudentGradeForm
0%
0/19
N/A
1
 
 1  
 package org.kuali.student.enrollment.class2.grading.form;
 2  
 
 3  
 /*
 4  
  * Copyright 2007 The Kuali Foundation
 5  
  *
 6  
  * Licensed under the Educational Community License, Version 1.0 (the "License");
 7  
  * you may not use this file except in compliance with the License.
 8  
  * You may obtain a copy of the License at
 9  
  *
 10  
  * http://www.opensource.org/licenses/ecl1.php
 11  
  *
 12  
  * Unless required by applicable law or agreed to in writing, software
 13  
  * distributed under the License is distributed on an "AS IS" BASIS,
 14  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 15  
  * See the License for the specific language governing permissions and
 16  
  * limitations under the License.
 17  
  */
 18  
 
 19  
 import org.kuali.rice.krad.web.form.UifFormBase;
 20  
 import org.kuali.student.enrollment.class2.grading.dataobject.StudentCredit;
 21  
 
 22  
 import java.util.ArrayList;
 23  
 import java.util.List;
 24  
 
 25  
 public class StudentGradeForm extends UifFormBase {
 26  
 
 27  
     private static final long serialVersionUID = -1054046347823982329L;
 28  
 
 29  
     private String name;
 30  
     private String firstTerm;
 31  
     private List<StudentCredit> creditList;
 32  
 
 33  
     private String selectedTerm;
 34  
 
 35  0
     private String title = "Term Record";
 36  
 
 37  0
     public StudentGradeForm(){
 38  0
         creditList = new ArrayList<StudentCredit>();
 39  0
     }
 40  
 
 41  
     public List<StudentCredit> getCreditList() {
 42  0
         return creditList;
 43  
     }
 44  
 
 45  
     public void setCreditList(List<StudentCredit> creditList) {
 46  0
         this.creditList = creditList;
 47  0
     }
 48  
 
 49  
     public String getFirstTerm() {
 50  0
         return firstTerm;
 51  
     }
 52  
 
 53  
     public void setFirstTerm(String firstTerm) {
 54  0
         this.firstTerm = firstTerm;
 55  0
     }
 56  
 
 57  
     public String getName() {
 58  0
         return name;
 59  
     }
 60  
 
 61  
     public void setName(String name) {
 62  0
         this.name = name;
 63  0
     }
 64  
 
 65  
     public String getSelectedTerm() {
 66  0
         return selectedTerm;
 67  
     }
 68  
 
 69  
     public void setSelectedTerm(String selectedTerm) {
 70  0
         this.selectedTerm = selectedTerm;
 71  0
     }
 72  
 
 73  
     public String getTitle() {
 74  0
         return title;
 75  
     }
 76  
 
 77  
     public void setTitle(String title) {
 78  0
         this.title = title;
 79  0
     }
 80  
 }