View Javadoc

1   package org.kuali.student.enrollment.class2.grading.service;
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.uif.field.InputField;
20  import org.kuali.rice.krad.uif.service.ViewHelperService;
21  import org.kuali.rice.krad.uif.view.View;
22  import org.kuali.student.enrollment.class2.grading.dataobject.GradeStudent;
23  import org.kuali.student.enrollment.class2.grading.form.GradingForm;
24  import org.kuali.student.enrollment.class2.grading.form.StudentGradeForm;
25  
26  import java.util.List;
27  
28  //Core slice classes, just still around for reference.. needs cleanup
29  @Deprecated
30  public interface GradingViewHelperService extends ViewHelperService{
31  
32      public void populateGradeOptions(InputField field, GradingForm gradingForm);
33  
34      public void unAssignGrade(View view,Object model,String selectedCollectionPath, Integer selectedLine );
35  
36      public List<GradeStudent> loadStudents(String selectedCourse,GradingForm gradingForm) throws  Exception;
37  
38      public boolean saveGrades(GradingForm gradingForm)throws Exception;
39  
40      public boolean submitGradeRoster(GradingForm gradingForm)throws Exception;
41  
42      public void loadStudentGrades(StudentGradeForm studentGradeForm) throws Exception;
43  
44      public void loadCourses(GradingForm gradingForm) throws Exception;
45  
46  }