View Javadoc

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      private String title = "Term Record";
36  
37      public StudentGradeForm(){
38          creditList = new ArrayList<StudentCredit>();
39      }
40  
41      public List<StudentCredit> getCreditList() {
42          return creditList;
43      }
44  
45      public void setCreditList(List<StudentCredit> creditList) {
46          this.creditList = creditList;
47      }
48  
49      public String getFirstTerm() {
50          return firstTerm;
51      }
52  
53      public void setFirstTerm(String firstTerm) {
54          this.firstTerm = firstTerm;
55      }
56  
57      public String getName() {
58          return name;
59      }
60  
61      public void setName(String name) {
62          this.name = name;
63      }
64  
65      public String getSelectedTerm() {
66          return selectedTerm;
67      }
68  
69      public void setSelectedTerm(String selectedTerm) {
70          this.selectedTerm = selectedTerm;
71      }
72  
73      public String getTitle() {
74          return title;
75      }
76  
77      public void setTitle(String title) {
78          this.title = title;
79      }
80  }