You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
107 lines
2.6 KiB
107 lines
2.6 KiB
package seng302.Mock;
|
|
|
|
import seng302.GPSCoordinate;
|
|
|
|
/**
|
|
* Created by jjg64 on 19/04/17.
|
|
* @deprecated use the RegattaXMLReader
|
|
*/
|
|
public class Regatta {
|
|
private int regattaID;
|
|
private String RegattaName;
|
|
private int raceID = 0;
|
|
private String courseName;
|
|
private double centralLatitude;
|
|
private double centralLongitude;
|
|
private double centralAltitude;
|
|
private float utcOffset;
|
|
private float magneticVariation;
|
|
|
|
public Regatta(int regattaID, String regattaName, String courseName, double centralLatitude, double centralLongitude, double centralAltitude, float utcOffset, float magneticVariation) {
|
|
this.regattaID = regattaID;
|
|
this.RegattaName = regattaName;
|
|
this.courseName = courseName;
|
|
this.centralLatitude = centralLatitude;
|
|
this.centralLongitude = centralLongitude;
|
|
this.centralAltitude = centralAltitude;
|
|
this.utcOffset = utcOffset;
|
|
this.magneticVariation = magneticVariation;
|
|
}
|
|
|
|
public int getRegattaID() {
|
|
return regattaID;
|
|
}
|
|
|
|
public void setRegattaID(int ID) {
|
|
this.regattaID = ID;
|
|
}
|
|
|
|
public String getRegattaName() {
|
|
return RegattaName;
|
|
}
|
|
|
|
public void setRegattaName(String regattaName) {
|
|
RegattaName = regattaName;
|
|
}
|
|
|
|
public int getRaceID() {
|
|
return raceID;
|
|
}
|
|
|
|
public void setRaceID(int raceID) {
|
|
this.raceID = raceID;
|
|
}
|
|
|
|
public String getCourseName() {
|
|
return courseName;
|
|
}
|
|
|
|
public void setCourseName(String courseName) {
|
|
this.courseName = courseName;
|
|
}
|
|
|
|
public double getCentralLatitude() {
|
|
return centralLatitude;
|
|
}
|
|
|
|
public void setCentralLatitude(double centralLatitude) {
|
|
this.centralLatitude = centralLatitude;
|
|
}
|
|
|
|
public double getCentralLongitude() {
|
|
return centralLongitude;
|
|
}
|
|
|
|
public void setCentralLongitude(double centralLongitude) {
|
|
this.centralLongitude = centralLongitude;
|
|
}
|
|
|
|
public double getCentralAltitude() {
|
|
return centralAltitude;
|
|
}
|
|
|
|
public void setCentralAltitude(double centralAltitude) {
|
|
this.centralAltitude = centralAltitude;
|
|
}
|
|
|
|
public float getUtcOffset() {
|
|
return utcOffset;
|
|
}
|
|
|
|
public void setUtcOffset(float utcOffset) {
|
|
this.utcOffset = utcOffset;
|
|
}
|
|
|
|
public float getMagneticVariation() {
|
|
return magneticVariation;
|
|
}
|
|
|
|
public void setMagneticVariation(float magneticVariation) {
|
|
this.magneticVariation = magneticVariation;
|
|
}
|
|
|
|
public GPSCoordinate getGPSCoordinate() {
|
|
return new GPSCoordinate(centralLatitude, centralLongitude);
|
|
}
|
|
}
|