blob: bdb8511d4cf7b3d4c1af977937a5ec728e8f22ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
package cgeo.geocaching.mapinterfaces;
import cgeo.geocaching.cgCoord;
/**
* Covers the common functions of the provider-specific
* CacheOverlayItem implementations
* @author rsudev
*
*/
public interface CacheOverlayItemImpl extends OverlayItemImpl {
public cgCoord getCoord();
public String getType();
}
|