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; /*from w w w . ja va 2s . c o m*/ import com.google.android.gms.maps.GoogleMap; import com.google.android.gms.maps.model.LatLngBounds; /** * * @author Vincent Cantin */ public interface StationProvider<T extends Station> { public void setMap(GoogleMap map); public void setStationInfoWindowAdapter(StationInfoWindowAdapter siwa); public void notifyCameraChanged(); public void refreshData(); public LatLngBounds getLatLngBounds(); public void notifyVisibilityChanged(boolean isVisible); }