blob: 03fa21f63a21c3f698dc5bfb446049c0b6febda6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
package cgeo.geocaching.maps.interfaces;
import cgeo.geocaching.IWaypoint;
/**
* Covers the common functions of the provider-specific
* CacheOverlayItem implementations
*/
public interface CachesOverlayItemImpl extends OverlayItemImpl {
public IWaypoint getCoord();
public boolean applyDistanceRule();
}
|