Stations list fixed on add screen

This commit is contained in:
Doug Keen 2011-07-11 12:18:59 -07:00
parent a0cb629803
commit a249563b27
1 changed files with 10 additions and 0 deletions

View File

@ -168,6 +168,16 @@ public enum Station {
return returnList;
}
static public List<Station> getStationList() {
List<Station> list = new ArrayList<Station>();
for (Station station : values()) {
if (!station.equals(Station.SPCL)) {
list.add(station);
}
}
return list;
}
public String toString() {
return name;
}