station has a field for a solution to a possible question now, also added some testdata
This commit is contained in:
parent
d5ca26bbd3
commit
98e501c7b0
@ -15,6 +15,7 @@ public class Station {
|
||||
private double longitude;
|
||||
private double lattitude;
|
||||
private int code;
|
||||
private String solution;
|
||||
|
||||
public Station() {
|
||||
}
|
||||
@ -58,4 +59,12 @@ public class Station {
|
||||
public void setCode(int code) {
|
||||
this.code = code;
|
||||
}
|
||||
|
||||
public String getSolution() {
|
||||
return solution;
|
||||
}
|
||||
|
||||
public void setSolution(String solution) {
|
||||
this.solution = solution;
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user