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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 836 - (hide annotations) (download)
Fri Jun 11 17:12:29 2010 UTC (13 years, 11 months ago) by torben
File size: 844 byte(s)
Extract station ID's to timetable xml
1 torben 350 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 torben 836 private int stationId;
9 torben 350
10     public String getStation() {
11     return station;
12     }
13     public void setStation(String station) {
14     this.station = station;
15     }
16    
17     public String getArrival() {
18     return arrival;
19     }
20     public void setArrival(String arrival) {
21     this.arrival = arrival;
22     }
23    
24     public String getDeparture() {
25     return departure;
26     }
27     public void setDeparture(String departure) {
28     this.departure = departure;
29     }
30    
31     public boolean isCurrent() {
32     return current;
33     }
34     public void setCurrent(boolean current) {
35     this.current = current;
36     }
37 torben 836 public int getStationId() {
38     return stationId;
39     }
40     public void setStationId(int stationId) {
41     this.stationId = stationId;
42     }
43 torben 350
44 torben 836
45 torben 350 }

  ViewVC Help
Powered by ViewVC 1.1.20