Back to project page AndroidWeatherBuoyDemo.
The source code is released under:
Apache License
If you think the Android project AndroidWeatherBuoyDemo 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.kevinrschultz.weatherbuoy.ui; //w ww. ja v a 2 s . com import com.kevinrschultz.weatherbuoy.model.BuoyDescription; import java.util.List; /** * @author Kevin Schultz (kschultz@gilt.com) */ public interface BuoyListingView { public void updateList(List<BuoyDescription> descriptionList); }