blob: d47bdc01404b06703a2c250832d34e6fe5fdfda6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
package cgeo.geocaching.apps.cache.navi;
import cgeo.geocaching.Geocache;
import cgeo.geocaching.apps.App;
import android.app.Activity;
/**
* interface for navigation to a cache
*
*/
public interface CacheNavigationApp extends App {
void navigate(final Activity activity, final Geocache cache);
@Override
boolean isEnabled(final Geocache cache);
}
|