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 w w .j a va 2 s . c o m*/ import com.thoughtworks.xstream.annotations.XStreamAlias; /** * A single named bus stop * * @author Hamilton Turner * */ @XStreamAlias("ScheduledStops") public class BusStop { @XStreamAlias("StopName") public String name; @XStreamAlias("StopCode") public int stopCode; }