Back to project page bike-friend.
The source code is released under:
GNU General Public License
If you think the Android project bike-friend 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.lemoulinstudio.bikefriend.webapp.cbike; /* ww w .j a v a 2 s . c o m*/ import java.util.List; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; /** * * @author Vincent Cantin */ @XmlRootElement(name = "BIKEStation") public class BIKEStation { @XmlElement(name = "Station") public List<XmlStation> stations; }