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.ubike; //from w ww .j av a 2 s . c o m import com.lemoulinstudio.bikefriend.InternetStationProvider; import com.lemoulinstudio.bikefriend.Utils; /** * * @author Vincent Cantin */ public class ChanghuaStationProvider extends InternetStationProvider<YouBikeStation> { public ChanghuaStationProvider() { super(Utils.shouldDisplayChineseLocationsAndAddresses() ? "http://chcg.youbike.com.tw/cht/f12.php?loc=chcg" : "http://chcg.youbike.com.tw/en/f12.php?loc=chcg", new YouBikeStationHtmlParserV2()); } }