From 3cc9fd5597ba55168e39f1f0b8db8abb8c4fbebf Mon Sep 17 00:00:00 2001 From: Michael Date: Fri, 3 May 2019 18:43:09 +0200 Subject: [PATCH] added StationPOI helper class --- .../bugageocaching/helper/StationPOI.java | 41 +++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 src/main/java/hhn/labsw/bugageocaching/helper/StationPOI.java diff --git a/src/main/java/hhn/labsw/bugageocaching/helper/StationPOI.java b/src/main/java/hhn/labsw/bugageocaching/helper/StationPOI.java new file mode 100644 index 0000000..6b2566b --- /dev/null +++ b/src/main/java/hhn/labsw/bugageocaching/helper/StationPOI.java @@ -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; + } +}