Android Open Source - CoolWeather Day Info






From Project

Back to project page CoolWeather.

License

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.

Java Source Code

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;
  }
  
}




Java Source Code List

org.das.coolweather.activities.DetailsActivityHost.java
org.das.coolweather.activities.SettingsActivity.java
org.das.coolweather.adapters.DayInfo.java
org.das.coolweather.adapters.DayListAdapter.java
org.das.coolweather.fragmentactivities.MainActivity.java
org.das.coolweather.fragments.Details.java
org.das.coolweather.fragments.Graph.java
org.das.coolweather.fragments.Map.java
org.das.coolweather.fragments.Search.java
org.das.coolweather.utils.LaBD.java
org.das.coolweather.utils.WeatherHttpClient.java