blob: 5bbc1b26e5f9ce2a5ad24600f754c635e06d98ca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
package cgeo.geocaching.files;
import android.content.Context;
public interface IFileSelectionView {
Context getContext();
String getCurrentFile();
void setCurrentFile(String string);
void close();
}
|