Back to project page YahooWeather.
The source code is released under:
GNU General Public License
If you think the Android project YahooWeather 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 com.imlongluo.weather.apis; //from w ww .j a v a2s . c o m class WOEIDInfo { int mQuality = 0; String mLatitude = ""; String mLongtitde = ""; String mOffsetLatitude = ""; String mOffsetLongitude = ""; String mRadius = ""; String mName = ""; String mAddition = ""; String mPostal = ""; String mNeighborhood = ""; String mCity = ""; String mCounty = ""; String mState = ""; String mCountry = ""; String mCountrycode = ""; String mStatecode = ""; String mWOEID = ""; protected void setQuality(int quality) { mQuality = quality; } protected void setLatitude(String latitude) { mLatitude = latitude; } protected void setLongtitde(String longtitde) { mLongtitde = longtitde; } protected void setOffsetLatitude(String offsetLatitude) { mOffsetLatitude = offsetLatitude; } protected void setOffsetLongitude(String offsetLongitude) { mOffsetLongitude = offsetLongitude; } protected void setRadius(String radius) { mRadius = radius; } protected void setName(String name) { mName = name; } protected void setAddition(String addition) { mAddition = addition; } protected void setPostal(String postal) { mPostal = postal; } protected void setCity(String city) { mCity = city; } protected void setCounty(String county) { mCounty = county; } protected void setState(String state) { mState = state; } protected void setCountry(String country) { mCountry = country; } protected void setCountrycode(String countrycode) { mCountrycode = countrycode; } protected void setStatecode(String statecode) { mStatecode = statecode; } protected void setWOEID(String wOEID) { mWOEID = wOEID; } public int getQuality() { return mQuality; } public String getLatitude() { return mLatitude; } public String getLongtitde() { return mLongtitde; } public String getOffsetLatitude() { return mOffsetLatitude; } public String getOffsetLongitude() { return mOffsetLongitude; } public String getRadius() { return mRadius; } public String getName() { return mName; } public String getAddition() { return mAddition; } public String getNeighborhood() { return mNeighborhood; } public String getPostal() { return mPostal; } public String getCity() { return mCity; } public String getCounty() { return mCounty; } public String getState() { return mState; } public String getCountry() { return mCountry; } public String getCountrycode() { return mCountrycode; } public String getStatecode() { return mStatecode; } public String getWOEID() { return mWOEID; } public void setNeighborhood(String neighborhood) { mNeighborhood = neighborhood; } }