-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSimplePagePeerEvalResultImpl.java
153 lines (126 loc) · 3.65 KB
/
SimplePagePeerEvalResultImpl.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
/**********************************************************************************
* $URL: $
* $Id: $
***********************************************************************************
*
* Author: Kim Huang, kimhuang@rutgers.edu
*
* Copyright (c) 2013 Rutgers, the State University of New Jersey
*
* Licensed under the Educational Community License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.opensource.org/licenses/ECL-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
**********************************************************************************/
package org.sakaiproject.lessonbuildertool;
import java.util.Date;
public class SimplePagePeerEvalResultImpl implements SimplePagePeerEvalResult {
private long peerEvalResultId;
private long pageId;
private Date timePosted;
private String grader;
private String gradee;
private String gradeeGroup;
private String rowText;
private long rowId;
private int columnValue;
private boolean selected;
public SimplePagePeerEvalResultImpl() {}
public SimplePagePeerEvalResultImpl(String userId) {
this.grader = userId;
this.timePosted = new Date();
this.selected = false;
}
public SimplePagePeerEvalResultImpl(String userId, String gradee, String gradeeGroup) {
this.grader = userId;
this.timePosted = new Date();
this.gradee = gradee;
this.gradeeGroup = gradeeGroup;
this.selected = false;
}
public SimplePagePeerEvalResultImpl(long pageId, String gradee, String gradeeGroup, String grader, String rowText, long rowId, int columnValue) {
this.pageId = pageId;
this.timePosted = new Date();
this.gradee = gradee;
this.gradeeGroup = gradeeGroup;
this.grader = grader;
this.rowText = rowText;
this.rowId = rowId;
this.columnValue = columnValue;
this.selected = true;
}
public void setPeerEvalResultId(long id) {
this.peerEvalResultId = id;
}
public long getPeerEvalResultId() {
return peerEvalResultId;
}
public long getPageId() {
return pageId;
}
public void setPageId(long id){
this.pageId = id;
}
public void setTimePosted(Date date) {
timePosted = date;
}
public Date getTimePosted() {
return timePosted;
}
public String getGrader(){
return grader;
}
public void setGrader(String author){
this.grader = author;
}
public String getGradee(){
return gradee;
}
public void setGradee(String author){
this.gradee = author;
}
public String getGradeeGroup(){
return gradeeGroup;
}
public void setGradeeGroup(String author){
this.gradeeGroup = author;
}
public String getRowText() {
return rowText;
}
public void setRowText(String text){
this.rowText = text;
}
public long getRowId() {
return rowId;
}
public void setRowId(long id){
this.rowId = id;
}
public int getColumnValue(){
return columnValue;
}
public void setColumnValue(int value){
this.columnValue = value;
}
public boolean getSelected() {
return selected;
}
public void setSelected(boolean selected){
this.selected = selected;
}
public int compareTo(Object o) {
if(!(o instanceof SimplePagePeerEvalResult)) {
throw new ClassCastException("Expected SimplePagePeerEvalResult Object");
}
return timePosted.compareTo(((SimplePagePeerEvalResultImpl)o).getTimePosted());
}
}