-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathKamyar
More file actions
44 lines (36 loc) · 870 Bytes
/
Kamyar
File metadata and controls
44 lines (36 loc) · 870 Bytes
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
public class Event{
private String date;
private String startTime;
private String endTime;
private String place;
public Event(String date, String sTime, String eTime ,String pl) {
this.date = date;
this.startTime = sTime;
this.endTime = eTime;
this.place = pl;
}
public void setDate(String d) {
date = d;
}
public String getDate() {
return date;
}
public void setsTime(String sT) {
startTime = sT;
}
public String getsTime() {
return startTime;
}
public void seteTime(String eT ) {
endTime = eT;
}
public String getPr() {
return endTime;
}
public void setPl(String p) {
place = p;
}
public String getPl() {
return place;
}
}