-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLogs
More file actions
38 lines (29 loc) · 647 Bytes
/
Logs
File metadata and controls
38 lines (29 loc) · 647 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
package com.example.jproject;
public class Logs {
private int LogID;
private String LogDate;
private int duration;
public Logs() {
LogID=0;
LogDate="01-02-2003";
duration=30;
}
public void setLogID(int logID) {
this.LogID = logID;
}
public void setLogDate(String logDate) {
LogDate = logDate;
}
public void setDuration(int duration) {
this.duration = duration;
}
public String getLogDate() {
return LogDate;
}
public int getLogID() {
return LogID;
}
public int getDuration() {
return duration;
}
}