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 w w . j a v a2s.com*/ import com.google.android.gms.maps.model.LatLng; import com.lemoulinstudio.bikefriend.Station; import java.util.Date; /** * * @author Vincent Cantin */ public class YouBikeStation extends Station { public String id; public String chineseName; public String chineseAddress; public String englishName; public String englishAddress; public LatLng location; public int nbBikes; public int nbEmptySlots; public int nbTotalPlaces; // <-- Not necessarily = nbBikes + nbEmptySlots public Date date; public boolean isTestStation; public String getName(String languageCode) { return "zh".equals(languageCode) || "ja".equals(languageCode) ? chineseName : englishName; } public String getAddress(String languageCode) { return "zh".equals(languageCode) || "ja".equals(languageCode) ? chineseAddress : englishAddress; } public LatLng getLocation() { return location; } public int getNbBikes() { return nbBikes; } public int getNbEmptySlots() { return nbEmptySlots; } public int getNbTotalPlaces() { return nbTotalPlaces; } public Date getDate() { return date; } public boolean isTestStation() { return isTestStation; } }