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  //Core slice classes, just still around for reference.. needs cleanup
26  @Deprecated
27  public class StudentGradeForm extends UifFormBase {
28  
29      private static final long serialVersionUID = -1054046347823982329L;
30  
31      private String name;
32      private String firstTerm;
33      private List<StudentCredit> creditList;
34  
35      private String selectedTerm;
36  
37      private String title = "Term Record";
38  
39      public StudentGradeForm(){
40          creditList = new ArrayList<StudentCredit>();
41      }
42  
43      public List<StudentCredit> getCreditList() {
44          return creditList;
45      }
46  
47      public void setCreditList(List<StudentCredit> creditList) {
48          this.creditList = creditList;
49      }
50  
51      public String getFirstTerm() {
52          return firstTerm;
53      }
54  
55      public void setFirstTerm(String firstTerm) {
56          this.firstTerm = firstTerm;
57      }
58  
59      public String getName() {
60          return name;
61      }
62  
63      public void setName(String name) {
64          this.name = name;
65      }
66  
67      public String getSelectedTerm() {
68          return selectedTerm;
69      }
70  
71      public void setSelectedTerm(String selectedTerm) {
72          this.selectedTerm = selectedTerm;
73      }
74  
75      public String getTitle() {
76          return title;
77      }
78  
79      public void setTitle(String title) {
80          this.title = title;
81      }
82  }