Android Open Source - AQUArinthia Lake Data






From Project

Back to project page AQUArinthia.

License

The source code is released under:

GNU General Public License

If you think the Android project AQUArinthia 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 at.theengine.android.aquarinthhia;
/*from  w w  w  .  j a  v  a2  s  .  c  o  m*/
public class LakeData {
  
  private String mLakeName;
  private String mTemp;
  private String mHeight;
  private String mTime;
  private float mLat;
    private float mLng;
    private String mImage;
  
  public String getLakeName() {
    return mLakeName;
  }
  public void setLakeName(String lakeName) {
    this.mLakeName = lakeName;
  }
  public String getTemp() {
    return mTemp;
  }
  public void setTemp(String temp) {
    this.mTemp = temp;
  }
  public String getTime() {
    return mTime;
  }
  public void setTime(String time) {
    this.mTime = time;
  }
  public String getHeight() {
    return mHeight;
  }
  public void setHeight(String height) {
    this.mHeight = height;
  }
  
  public float getLat() {
        return this.mLat;
    }

    public void setLat(float lat) {
        this.mLat = lat;
    }
    
    public float getLng() {
        return this.mLng;
    }

    public void setLng(float lng) {
        this.mLng = lng;
    }
    public String getImage() {
    return mImage;
  }
  public void setImage(String image) {
    this.mImage = image;
  }
}




Java Source Code List

at.theengine.android.aquarinthhia.DataLoaderCallback.java
at.theengine.android.aquarinthhia.DataLoader.java
at.theengine.android.aquarinthhia.InfoFragment.java
at.theengine.android.aquarinthhia.LakeData.java
at.theengine.android.aquarinthhia.LakeListAdapter.java
at.theengine.android.aquarinthhia.LakesFragment.java
at.theengine.android.aquarinthhia.MainActivity.java
at.theengine.android.aquarinthhia.MapActivity.java
at.theengine.android.aquarinthhia.RainData.java
at.theengine.android.aquarinthhia.RainListAdapter.java
at.theengine.android.aquarinthhia.RainfallFragment.java
at.theengine.android.aquarinthhia.RiverData.java
at.theengine.android.aquarinthhia.RiverListAdapter.java
at.theengine.android.aquarinthhia.RiversFragment.java
at.theengine.android.bestlocation.BestLocationListener.java
at.theengine.android.bestlocation.BestLocationProvider.java
at.theengine.android.simple_rss2_android.Copyable.java
at.theengine.android.simple_rss2_android.FeedParser.java
at.theengine.android.simple_rss2_android.RSSItem.java
at.theengine.android.simple_rss2_android.SimpleFeedParser.java
at.theengine.android.simple_rss2_android.SimpleRss2ParserCallback.java
at.theengine.android.simple_rss2_android.SimpleRss2Parser.java