--- android/TrainInfoService/src/dk/thoerup/traininfoservice/banedk/DepartureBean.java 2010/05/02 15:57:49 696 +++ android/TrainInfoService/src/dk/thoerup/traininfoservice/banedk/DepartureBean.java 2010/05/03 07:42:02 697 @@ -9,6 +9,7 @@ private String location; private String status; private String note; + private String type; public String getTime() { @@ -60,6 +61,14 @@ this.note = note; } + public String getType() { + return type; + } + + public void setType(String type) { + this.type = type; + } + @Override public int compareTo(DepartureBean otherBean) { String timeStr1 = time.replace(":","").trim();