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