--- android/TrainInfoCommon/src/dk/thoerup/android/traininfo/common/DepartureEntry.java 2012/08/19 20:41:20 1830 +++ android/TrainInfoCommon/src/dk/thoerup/android/traininfo/common/DepartureEntry.java 2012/08/20 21:15:20 1831 @@ -35,6 +35,10 @@ @Element private String type; + @Element(required=false) + private String platform = ""; + + public String getTime() { return time; @@ -92,5 +96,13 @@ public void setType(String type) { this.type = type; } + public String getPlatform() { + return platform; + } + public void setPlatform(String platform) { + this.platform = platform; + } + + }