Back to project page UTMShuttleAndroid.
The source code is released under:
GNU General Public License
If you think the Android project UTMShuttleAndroid listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package classes; /* ww w . j ava 2s . c om*/ import java.util.ArrayList; import java.util.List; public class Route { private int ID; private String name; private List<String> times = new ArrayList<>(); public Route(int ID, String name) { this.ID = ID; this.name = name; } public int getID() { return ID; } public void setID(int iD) { this.ID = iD; } public String getName() { return name; } public void setName(String name) { this.name = name; } public List<String> getTimes() { return times; } public void setTimes(List<String> times) { this.times = times; } public void addTime(String time) { getTimes().add(time); } @Override public String toString() { return String.format("Route %s: %s", getID(), getName()); } }