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.param; /*from w w w . j a v a2 s .co m*/ import org.openweathermap.asynctask.base.IParam; import org.openweathermap.dto.CityDTO; import org.openweathermap.dto.DayDTO; /** * @author samkirton */ public class SaveForecastParam implements IParam { private CityDTO mCityDTO; private DayDTO[] mDayDTOArray; public CityDTO getCityDTO() { return mCityDTO; } public void setCityDTO(CityDTO newVal) { mCityDTO = newVal; } public DayDTO[] getDayDTOArray() { return mDayDTOArray; } public void setDayDTOArray(DayDTO[] newVal) { mDayDTOArray = newVal; } }