aboutsummaryrefslogtreecommitdiffstats
path: root/src/cgeo/geocaching/apps/cache/navi/NavigationApp.java
blob: d3b3c36c9a09e8a8e7fdc7e3e4ea84bd1834535a (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 android.app.Activity;
import android.content.res.Resources;
import cgeo.geocaching.cgCache;
import cgeo.geocaching.cgGeo;
import cgeo.geocaching.cgWarning;
import cgeo.geocaching.cgWaypoint;
import cgeo.geocaching.apps.App;

interface NavigationApp extends App {
	public boolean invoke(final cgGeo geo, final Activity activity,
			final Resources res, final cgWarning warning,
			final cgCache cache,
			final Long searchId, final cgWaypoint waypoint,
			final Double latitude, final Double longitude);
}