listData.java :  » Location » wifiathome » dk » wifiathome » Android Open Source

Android Open Source » Location » wifiathome 
wifiathome » dk » wifiathome » listData.java
package dk.wifiathome;

public class listData {

  private String WifiSpotName = null;

  private double WifiSpotCellInfoLong = -1;
  private double WifiSpotCellInfoLat = -1;
  private double WifiSpotGpsInfoLong = -1;
  private double WifiSpotGpsInfoLat = -1;

  public String getWifiSpotName() {
    return WifiSpotName;
  }

  public void setWifiSpotName(String NewWifiSpotName) {
    this.WifiSpotName = NewWifiSpotName;
  }

  public double getWifiSpotCellInfoLat() {
    return WifiSpotCellInfoLat;
  }
  
  public double getWifiSpotCellInfoLong() {
    return WifiSpotCellInfoLong;
  }

  public void setWifiSpotCellInfo(double NewWifiSpotCellInfoLat, double NewWifiSpotCellInfoLong) {
    this.WifiSpotCellInfoLat = NewWifiSpotCellInfoLat;
    this.WifiSpotCellInfoLong = NewWifiSpotCellInfoLong;
  }
  
  public double getWifiSpotGpsInfoLat() {
    return WifiSpotGpsInfoLat;
  }
  
  public double getWifiSpotGpsInfoLong() {
    return WifiSpotGpsInfoLong;
  }

  public void setWifiSpotGpsInfo(double NewWifiSpotGpsInfoLat, double NewWifiSpotGpsInfoLong) {
    this.WifiSpotGpsInfoLat = NewWifiSpotGpsInfoLat;
    this.WifiSpotGpsInfoLong = NewWifiSpotGpsInfoLong;
  }

}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.