station has a field for a solution to a possible question now, also added some testdata

This commit is contained in:
Michael 2019-03-26 22:33:21 +01:00
parent d5ca26bbd3
commit 98e501c7b0

View File

@ -15,6 +15,7 @@ public class Station {
private double longitude; private double longitude;
private double lattitude; private double lattitude;
private int code; private int code;
private String solution;
public Station() { public Station() {
} }
@ -58,4 +59,12 @@ public class Station {
public void setCode(int code) { public void setCode(int code) {
this.code = code; this.code = code;
} }
public String getSolution() {
return solution;
}
public void setSolution(String solution) {
this.solution = solution;
}
} }