01: /**********************************************************************************
02: *
03: * $Id: CommentDefinition.java 21443 2007-02-14 22:22:44Z ray@media.berkeley.edu $
04: *
05: ***********************************************************************************
06: *
07: * Copyright (c) 2007 The Regents of the University of California
08: *
09: * Licensed under the Educational Community License, Version 1.0 (the "License");
10: * you may not use this file except in compliance with the License.
11: * You may obtain a copy of the License at
12: *
13: * http://www.opensource.org/licenses/ecl1.php
14: *
15: * Unless required by applicable law or agreed to in writing, software
16: * distributed under the License is distributed on an "AS IS" BASIS,
17: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18: * See the License for the specific language governing permissions and
19: * limitations under the License.
20: *
21: **********************************************************************************/package org.sakaiproject.service.gradebook.shared;
22:
23: import java.util.Date;
24:
25: /**
26: *
27: */
28: public class CommentDefinition {
29: private String studentUid;
30: private String graderUid;
31: private Date dateRecorded;
32: private String commentText;
33: private String assignmentName;
34:
35: public String getAssignmentName() {
36: return assignmentName;
37: }
38:
39: public void setAssignmentName(String assignmentName) {
40: this .assignmentName = assignmentName;
41: }
42:
43: public String getCommentText() {
44: return commentText;
45: }
46:
47: public void setCommentText(String commentText) {
48: this .commentText = commentText;
49: }
50:
51: public Date getDateRecorded() {
52: return dateRecorded;
53: }
54:
55: public void setDateRecorded(Date dateRecorded) {
56: this .dateRecorded = dateRecorded;
57: }
58:
59: public String getGraderUid() {
60: return graderUid;
61: }
62:
63: public void setGraderUid(String graderUid) {
64: this .graderUid = graderUid;
65: }
66:
67: public String getStudentUid() {
68: return studentUid;
69: }
70:
71: public void setStudentUid(String studentUid) {
72: this.studentUid = studentUid;
73: }
74: }
|