--- android/TrainInfoService/src/dk/thoerup/traininfoservice/banedk/DepartureBean.java 2010/08/30 11:53:34 1020 +++ android/TrainInfoService/src/dk/thoerup/traininfoservice/banedk/DepartureBean.java 2010/08/30 13:59:54 1021 @@ -7,6 +7,8 @@ public class DepartureBean { + String stationName; + Set notifications = new HashSet(); List departureEntries = new ArrayList(); @@ -18,4 +20,8 @@ return departureEntries; } + public String getStationName() { + return stationName; + } + }