diff options
Diffstat (limited to 'main/src/cgeo/geocaching/files/IFileSelectionView.java')
| -rw-r--r-- | main/src/cgeo/geocaching/files/IFileSelectionView.java | 15 |
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(); + +} |
