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; // w ww.j a v a 2 s. c om import com.ruenzuo.weatherapp.models.Country; import bolts.Task; /** * Created by ruenzuo on 07/05/14. */ public interface CountriesFetcher { public Task<Country[]> getCountries(); }