Android Open Source - YahooWeather W O E I D Info






From Project

Back to project page YahooWeather.

License

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.

Java Source Code

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




Java Source Code List

cn.sharesdk.demo.wxapi.WXEntryActivity.java
cn.sharesdk.onekeyshare.CustomerLogo.java
cn.sharesdk.onekeyshare.EditPage.java
cn.sharesdk.onekeyshare.FollowList.java
cn.sharesdk.onekeyshare.OnekeyShare.java
cn.sharesdk.onekeyshare.PicViewer.java
cn.sharesdk.onekeyshare.PlatformGridView.java
cn.sharesdk.onekeyshare.Shake2Share.java
cn.sharesdk.onekeyshare.ShareContentCustomizeCallback.java
cn.sharesdk.onekeyshare.ShareCore.java
com.imlongluo.weather.MainActivity.java
com.imlongluo.weather.WeatherApplication.java
com.imlongluo.weather.apis.AsciiUtils.java
com.imlongluo.weather.apis.ImageUtils.java
com.imlongluo.weather.apis.NetworkUtils.java
com.imlongluo.weather.apis.UserLocationUtils.java
com.imlongluo.weather.apis.WOEIDInfo.java
com.imlongluo.weather.apis.WOEIDUtils.java
com.imlongluo.weather.apis.WeatherInfo.java
com.imlongluo.weather.apis.YahooWeatherConsts.java
com.imlongluo.weather.apis.YahooWeatherExceptionListener.java
com.imlongluo.weather.apis.YahooWeatherInfoListener.java
com.imlongluo.weather.apis.YahooWeatherLog.java
com.imlongluo.weather.apis.YahooWeather.java
com.imlongluo.weather.lbs.LocationGetter.java
com.imlongluo.weather.lbs.LocationManagerActivity.java
com.imlongluo.weather.settings.SettingsActivity.java
com.imlongluo.weather.share.ShareActivity.java
com.imlongluo.weather.utils.Constants.java
com.imlongluo.weather.utils.Utils.java