-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRetakeSchedule.java
More file actions
50 lines (42 loc) · 1 KB
/
RetakeSchedule.java
File metadata and controls
50 lines (42 loc) · 1 KB
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
public class RetakeSchedule {
private String retakeID;
private String courseID;
private String week;
private String date;
private String task;
RetakeSchedule(String retakeID,
String courseID,
String week,
String date,
String task)
{
this.retakeID = retakeID;
this.courseID = courseID;
this.week = week;
this.date = date;
this.task = task;
}
public String getRetakeID() {
return retakeID;
}
public String getCourseID() {
return courseID;
}
public String getWeek() {
return week;
}
public String getDate() {
return date;
}
public String getTask() {
return task;
}
@Override
public String toString() {
return retakeID + ";" +
courseID + ";" +
week + ";" +
date + ";" +
task;
}
}