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; //from w w w . ja v a 2 s . c o m import com.ruenzuo.weatherapp.models.City; import bolts.Task; /** * Created by ruenzuo on 07/05/14. */ public interface CitiesStorer { public Task<Boolean> storeCities(City[] cities); }