aboutsummaryrefslogtreecommitdiff
path: root/src/net/cbaines/suma/BusStopView.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/cbaines/suma/BusStopView.java')
-rw-r--r--src/net/cbaines/suma/BusStopView.java34
1 files changed, 34 insertions, 0 deletions
diff --git a/src/net/cbaines/suma/BusStopView.java b/src/net/cbaines/suma/BusStopView.java
new file mode 100644
index 0000000..d76198b
--- /dev/null
+++ b/src/net/cbaines/suma/BusStopView.java
@@ -0,0 +1,34 @@
+/*
+ * Southampton University Map App
+ * Copyright (C) 2011 Christopher Baines
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ */
+
+package net.cbaines.suma;
+
+import android.content.Context;
+
+public class BusStopView extends POIView {
+
+ public BusStopView(Context context, BusStop busStop) {
+ this(context, busStop, -1);
+ }
+
+ public BusStopView(Context context, BusStop busStop, int dist) {
+ super(context, (POI) busStop, dist);
+ }
+
+}