-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEspTransportation.java
49 lines (38 loc) · 1.04 KB
/
EspTransportation.java
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
import java.io.Serializable;
public class EspTransportation implements Serializable {
private String days;
private String description;
private int busNumber;
private String stopTime;
private String stopDescription;
public String getDays() {
return this.days;
}
public void setDays(String days) {
this.days = days;
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
public int getBusNumber() {
return this.busNumber;
}
public void setBusNumber(int busNumber) {
this.busNumber = busNumber;
}
public String getStopTime() {
return this.stopTime;
}
public void setStopTime(String stopTime) {
this.stopTime = stopTime;
}
public String getStopDescription() {
return this.stopDescription;
}
public void setStopDescription(String stopDescription) {
this.stopDescription = stopDescription;
}
}