added StationPOI helper class
This commit is contained in:
parent
e78157e2f5
commit
3cc9fd5597
@ -0,0 +1,41 @@
|
||||
package hhn.labsw.bugageocaching.helper;
|
||||
|
||||
public class StationPOI {
|
||||
|
||||
private String Name;
|
||||
private float Latitude;
|
||||
private float Longitude;
|
||||
private int CategoryID; // 0 = grünes icon(startstation) // 1 = orangenes icon(folgestationen) // 2 = rotes icon(endstation)
|
||||
|
||||
public String getName() {
|
||||
return Name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
Name = name;
|
||||
}
|
||||
|
||||
public float getLatitude() {
|
||||
return Latitude;
|
||||
}
|
||||
|
||||
public void setLatitude(float latitude) {
|
||||
Latitude = latitude;
|
||||
}
|
||||
|
||||
public float getLongitude() {
|
||||
return Longitude;
|
||||
}
|
||||
|
||||
public void setLongitude(float longitude) {
|
||||
Longitude = longitude;
|
||||
}
|
||||
|
||||
public int getCategoryID() {
|
||||
return CategoryID;
|
||||
}
|
||||
|
||||
public void setCategoryID(int categoryID) {
|
||||
CategoryID = categoryID;
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user