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 v a 2 s .com*/ import org.openweathermap.asynctask.base.BaseResponse; import org.openweathermap.sql.model.CityModel; /** * @author samkirton */ public class GetCitiesResponse extends BaseResponse { private CityModel[] mCityModelArray; public CityModel[] getCityModelArray() { return mCityModelArray; } public void setCityModelArray(CityModel[] cityModelArray) { mCityModelArray = cityModelArray; } }