Android Open Source - MyWeather County






From Project

Back to project page MyWeather.

License

The source code is released under:

Apache License

If you think the Android project MyWeather 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 model;
/*w ww.  j ava2  s  . c  om*/
public class County {
  private int id;
  private String countyName;
  private String countyCode;
  private int cityId;
  
  public int getId() {
    return id;
  }
  public void setId(int id) {
    this.id = id;
  }
  public String getCountyName() {
    return countyName;
  }
  public void setCountyName(String countyName) {
    this.countyName = countyName;
  }
  public String getCountyCode() {
    return countyCode;
  }
  public void setCountyCode(String countyCode) {
    this.countyCode = countyCode;
  }
  public int getCityId() {
    return cityId;
  }
  public void setCityId(int cityId) {
    this.cityId = cityId;
  }
}




Java Source Code List

activity.ChooseAreaActivity.java
activity.WeatherActivity.java
db.MyWeatherDB.java
db.MyWeatherOpenHelper.java
model.City.java
model.County.java
model.Province.java
receiver.AutoUpdateReceiver.java
service.AutoUpdateService.java
util.HttpCallbackListener.java
util.HttpUtil.java
util.Utility.java