/[projects]/android/TrainInfoService/src/dk/thoerup/traininfoservice/banedk/TimetableBean.java
ViewVC logotype

Contents of /android/TrainInfoService/src/dk/thoerup/traininfoservice/banedk/TimetableBean.java

Parent Directory Parent Directory | Revision Log Revision Log


Revision 975 - (show annotations) (download)
Sat Jul 10 08:35:16 2010 UTC (13 years, 10 months ago) by torben
File size: 1001 byte(s)
Make cancelled strings from new site(trafikinfo.bane.dk) appear like they did on the old one
1 package dk.thoerup.traininfoservice.banedk;
2
3 public class TimetableBean {
4 private String station;
5 private String arrival;
6 private String departure;
7 private boolean current;
8 private int stationId;
9 boolean cancelled;
10
11 public String getStation() {
12 return station;
13 }
14 public void setStation(String station) {
15 this.station = station;
16 }
17
18 public String getArrival() {
19 return arrival;
20 }
21 public void setArrival(String arrival) {
22 this.arrival = arrival;
23 }
24
25 public String getDeparture() {
26 return departure;
27 }
28 public void setDeparture(String departure) {
29 this.departure = departure;
30 }
31
32 public boolean isCurrent() {
33 return current;
34 }
35 public void setCurrent(boolean current) {
36 this.current = current;
37 }
38 public int getStationId() {
39 return stationId;
40 }
41 public void setStationId(int stationId) {
42 this.stationId = stationId;
43 }
44
45 public boolean isCancelled() {
46 return cancelled;
47 }
48 public void setCancelled(boolean cancelled) {
49 this.cancelled = cancelled;
50 }
51
52
53 }

  ViewVC Help
Powered by ViewVC 1.1.20