Back to project page BT4Android-trunk.
The source code is released under:
Apache License
If you think the Android project BT4Android-trunk 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 com.love.apps.BT4U.webservice; /* w ww. ja v a2s . c o m*/ import com.thoughtworks.xstream.annotations.XStreamAlias; /** * Represents a single stop that is scheduled to happen sometime later today on * a bus route * * @author Hamilton Turner */ @XStreamAlias("ScheduledStops") public class ScheduledStop { public String getStopName() { return stopName; } public void setStopName(String stopName) { this.stopName = stopName; } public void setStopCode(int stopCode) { this.stopCode = stopCode; } @XStreamAlias("StopCode") public int stopCode; @XStreamAlias("StopName") public String stopName; public String getStopCode() { return Integer.toString(stopCode); } }