-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDate.java
More file actions
79 lines (63 loc) · 1.45 KB
/
Date.java
File metadata and controls
79 lines (63 loc) · 1.45 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
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
public class Date {
private int Day;
private int Month;
private int Year;
private int Hour;
private int Minute;
public Date(int Hour, int Minute, int Day, int Month, int Year) {
this.Day = Day;
this.Month = Month;
this.Year = Year;
this.Hour = Hour;
this.Minute = Minute;
}
public Date() {
this(0, 0, 0, 0, 0);
}
public int getHour() {
return Hour;
}
public void setHour(int Hour) {
if (Hour >= 0 && Hour <= 23) {
this.Hour = Hour;
} else {
this.Hour = 0;
}
}
public int getMinute() {
return Minute;
}
public void setMinute(int Minute) {
if (Minute >= 0 && Minute <= 59) {
this.Minute = Minute;
} else {
this.Minute = 0;
}
}
public int getDay() {
return Day;
}
public void setDay(int Day) {
if (Day >= 1 && Day <= 31) {
this.Day = Day;
} else {
this.Day = 0;
}
}
public int getMonth() {
return Month;
}
public void setMonth(int Month) {
this.Month = Month;
}
public int getYear() {
return Year;
}
public void setYear(int Year) {
this.Year = Year;
}
@Override
public String toString() {
return String.format("Date: %02d/%02d/%04d %nTime: %02d:%02d %n", Day, Month, Year, Hour, Minute);
}
}