-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSit.java
More file actions
43 lines (37 loc) · 826 Bytes
/
Sit.java
File metadata and controls
43 lines (37 loc) · 826 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 Sit {
private String dateS;
private String timeS;
private String timeF;
private int id;
private String nameChild;
private String address;
public Sit(int id, String dateS, String timeS, String timeF, String nameChild, String address)
{
this.id= id;
this.dateS=dateS;
this.timeS=timeS;
this.timeF=timeF;
this.nameChild=nameChild;
this.address=address;
}
public String getDateS()
{
return this.dateS;
}
public String getTimeS()
{
return this.timeS;
}
public String getAddress() {
return address;
}
public int getId() {
return id;
}
public String getNameChild() {
return nameChild;
}
public String getTimeF() {
return timeF;
}
}