blob: eb18d876be8faa3600042a3ae72dae8bca243aab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
package cgeo.geocaching.activity;
/**
* Interface to implement by activities that want to utilize the NavigationActionProvider
*
* @author rsudev
*
*/
public interface INavigationSource {
/**
* Calls the default navigation in the current context
*/
void startDefaultNavigation();
/**
* Calls the second default navigation in the current context
*/
void startDefaultNavigation2();
}
|