blob: efe5c12582ceb7b4144ec428688fe8520512d84d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
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();
}
|