/[projects]/android/TrainInfo/src/dk/thoerup/traininfo/TimetableBean.java
ViewVC logotype

Contents of /android/TrainInfo/src/dk/thoerup/traininfo/TimetableBean.java

Parent Directory Parent Directory | Revision Log Revision Log


Revision 840 - (show annotations) (download)
Fri Jun 11 18:46:46 2010 UTC (13 years, 11 months ago) by torben
File size: 939 byte(s)
Enable forward navigation from timetable list to a new departure list
1 package dk.thoerup.traininfo;
2
3 import java.io.Serializable;
4
5 public class TimetableBean implements Serializable{
6 private static final long serialVersionUID = 1L;
7
8 private String station;
9 private String arrival;
10 private String departure;
11 private boolean current;
12 private int stationId;
13
14 public String getStation() {
15 return station;
16 }
17 public void setStation(String station) {
18 this.station = station;
19 }
20
21 public String getArrival() {
22 return arrival;
23 }
24 public void setArrival(String arrival) {
25 this.arrival = arrival;
26 }
27
28 public String getDeparture() {
29 return departure;
30 }
31 public void setDeparture(String departure) {
32 this.departure = departure;
33 }
34
35 public boolean isCurrent() {
36 return current;
37 }
38 public void setCurrent(boolean current) {
39 this.current = current;
40 }
41
42 public int getStationId() {
43 return stationId;
44 }
45
46 public void setStationId(int stationId) {
47 this.stationId = stationId;
48 }
49
50
51 }

  ViewVC Help
Powered by ViewVC 1.1.20