blob: 0407ee438f77063a0ae2abe7b3d495069da8d893 (
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(final String name);
void close();
}
|