01: /**********************************************************************************
02: * $URL: https://source.sakaiproject.org/svn/sam/tags/sakai_2-4-1/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/assessment/AssessmentFeedbackIfc.java $
03: * $Id: AssessmentFeedbackIfc.java 9269 2006-05-10 21:31:31Z daisyf@stanford.edu $
04: ***********************************************************************************
05: *
06: * Copyright (c) 2004, 2005, 2006 The Sakai Foundation.
07: *
08: * Licensed under the Educational Community License, Version 1.0 (the"License");
09: * you may not use this file except in compliance with the License.
10: * You may obtain a copy of the License at
11: *
12: * http://www.opensource.org/licenses/ecl1.php
13: *
14: * Unless required by applicable law or agreed to in writing, software
15: * distributed under the License is distributed on an "AS IS" BASIS,
16: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17: * See the License for the specific language governing permissions and
18: * limitations under the License.
19: *
20: **********************************************************************************/package org.sakaiproject.tool.assessment.data.ifc.assessment;
21:
22: public interface AssessmentFeedbackIfc extends java.io.Serializable {
23:
24: public static Integer IMMEDIATE_FEEDBACK = new Integer(1);
25: public static Integer FEEDBACK_BY_DATE = new Integer(2);
26: public static Integer NO_FEEDBACK = new Integer(3);
27:
28: public static Integer QUESTIONLEVEL_FEEDBACK = new Integer(1);
29: public static Integer SECTIONLEVEL_FEEDBACK = new Integer(2);
30: public static Integer BOTH_FEEDBACK = new Integer(3);
31:
32: Long getId();
33:
34: void setId(Long id);
35:
36: void setAssessmentBase(AssessmentBaseIfc assessmentBase);
37:
38: AssessmentBaseIfc getAssessmentBase();
39:
40: Integer getFeedbackDelivery();
41:
42: void setFeedbackDelivery(Integer feedbackDelivery);
43:
44: Integer getFeedbackAuthoring();
45:
46: void setFeedbackAuthoring(Integer feedbackAuthoring);
47:
48: Integer getEditComponents();
49:
50: void setEditComponents(Integer editComponents);
51:
52: Boolean getShowQuestionText();
53:
54: void setShowQuestionText(Boolean showQuestionText);
55:
56: Boolean getShowStudentResponse();
57:
58: void setShowStudentResponse(Boolean showStudentResponse);
59:
60: Boolean getShowCorrectResponse();
61:
62: void setShowCorrectResponse(Boolean showCorrectResponse);
63:
64: Boolean getShowStudentScore();
65:
66: void setShowStudentScore(Boolean showStudentScore);
67:
68: Boolean getShowStudentQuestionScore();
69:
70: void setShowStudentQuestionScore(Boolean showStudentQuestionScore);
71:
72: Boolean getShowQuestionLevelFeedback();
73:
74: void setShowQuestionLevelFeedback(Boolean showQuestionLevelFeedback);
75:
76: Boolean getShowSelectionLevelFeedback();
77:
78: void setShowSelectionLevelFeedback(
79: Boolean showSelectionLevelFeedback);
80:
81: Boolean getShowGraderComments();
82:
83: void setShowGraderComments(Boolean showGraderComments);
84:
85: Boolean getShowStatistics();
86:
87: void setShowStatistics(Boolean showStatistics);
88: }
|