blob: 098475589b9d8db04f9bcefe95f2e7d8c3f77566 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
package cgeo.geocaching.maps.interfaces;
/**
* Marker interface of the provider-specific
* Overlay implementations
*/
public interface OverlayImpl {
void lock();
void unlock();
MapViewImpl getMapViewImpl();
}
|