aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/files/IFileSelectionView.java
diff options
context:
space:
mode:
authorrsudev <rasch@munin-soft.de>2012-10-26 23:06:40 +0200
committerrsudev <rasch@munin-soft.de>2012-11-03 23:24:17 +0100
commitc942e65f13579e96ef528f8a7641f3571ce963dd (patch)
tree26bebb9b09f4693c7e1351dd48980f06e5e26523 /main/src/cgeo/geocaching/files/IFileSelectionView.java
parent886b0d281b4007bcfa202e6654fc065c3df97d07 (diff)
downloadcgeo-c942e65f13579e96ef528f8a7641f3571ce963dd.zip
cgeo-c942e65f13579e96ef528f8a7641f3571ce963dd.tar.gz
cgeo-c942e65f13579e96ef528f8a7641f3571ce963dd.tar.bz2
Generalize map file selection
Diffstat (limited to 'main/src/cgeo/geocaching/files/IFileSelectionView.java')
-rw-r--r--main/src/cgeo/geocaching/files/IFileSelectionView.java15
1 files changed, 15 insertions, 0 deletions
diff --git a/main/src/cgeo/geocaching/files/IFileSelectionView.java b/main/src/cgeo/geocaching/files/IFileSelectionView.java
new file mode 100644
index 0000000..5bbc1b2
--- /dev/null
+++ b/main/src/cgeo/geocaching/files/IFileSelectionView.java
@@ -0,0 +1,15 @@
+package cgeo.geocaching.files;
+
+import android.content.Context;
+
+public interface IFileSelectionView {
+
+ Context getContext();
+
+ String getCurrentFile();
+
+ void setCurrentFile(String string);
+
+ void close();
+
+}