Back to project page android-weather-demo-application.
The source code is released under:
GNU General Public License
If you think the Android project android-weather-demo-application 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 org.openweathermap.asynctask.response; /*from ww w . j a v a 2 s . com*/ import java.util.HashMap; import org.openweathermap.asynctask.base.BaseResponse; import org.openweathermap.sql.model.CityModel; import org.openweathermap.sql.model.WeatherModel; /** * @author samkirton */ public class SaveForecastResponse extends BaseResponse { private CityModel mCityModel; private WeatherModel[] mWeatherModelArray; private HashMap<String,Integer> mIconMap; public CityModel getCityModel() { return mCityModel; } public void setCityModel(CityModel newVal) { mCityModel = newVal; } public WeatherModel[] getWeatherModelArray() { return mWeatherModelArray; } public void setWeatherModelArray(WeatherModel[] newVal) { mWeatherModelArray = newVal; } public HashMap<String,Integer> getIconMap() { return mIconMap; } public void setIconMap(HashMap<String,Integer> newVal) { mIconMap = newVal; } }