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.vo; //from w w w. j av a2 s . c om import com.lemoulinstudio.bikefriend.webapp.entity.Station; import java.util.Map; /** * * @author Vincent Cantin */ public class StationVo { public String id; public Station.Provider provider; public Map<String, Station.Info> languageToInfo; public double[] location; }