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 ww w . j av a 2s . c o m*/ import com.ruenzuo.weatherapp.models.City; import com.ruenzuo.weatherapp.models.Station; import bolts.Task; /** * Created by ruenzuo on 09/05/14. */ public interface StationsStorer { public Task<Boolean> storeStations(Station[] stations, City city); }