Back to project page android-facade-example.
The source code is released under:
MIT License
If you think the Android project android-facade-example 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.ruenzuo.weatherapp.definitions; // ww w .java 2 s .com import com.ruenzuo.weatherapp.models.City; import com.ruenzuo.weatherapp.models.Country; import bolts.Task; /** * Created by ruenzuo on 07/05/14. */ public interface CitiesFetcher { public Task<City[]> getCities(Country country); }