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 w w w. j a va 2 s . c o m*/ import org.openweathermap.asynctask.base.BaseResponse; import org.openweathermap.sql.model.CityModel; /** * @author samkirton */ public class GetLastCityResponse extends BaseResponse { private CityModel mCityModel; public CityModel getCityModel() { return mCityModel; } public void setCityModel(CityModel newVal) { mCityModel = newVal; } }