Back to project page CoolWeather.
The source code is released under:
GNU General Public License
If you think the Android project CoolWeather 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.das.coolweather.adapters; /*from w w w . j av a 2s. c om*/ public class DayInfo { private String day, imageSrc, tempMin, tempMax, wind, humidity, rain, pressure; public DayInfo(String day, String imageSrc, String tempMin, String tempMax, String wind, String humidity, String rain, String pressure) { this.day = day; this.imageSrc = imageSrc; this.tempMin = tempMin; this.tempMax = tempMax; this.wind = wind; this.humidity = humidity; this.rain = rain; this.pressure = pressure; } public String getImageSrc() { return imageSrc; } public String getDay() { return day; } public String getTempMin() { return tempMin; } public String getTempMax() { return tempMax; } public String getWind() { return wind; } public String getHumidity() { return humidity; } public String getRain() { return rain; } public String getPressure() { return pressure; } }