diff options
Diffstat (limited to 'src/cgeo/geocaching/mapinterfaces/CacheOverlayItemImpl.java')
| -rw-r--r-- | src/cgeo/geocaching/mapinterfaces/CacheOverlayItemImpl.java | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/cgeo/geocaching/mapinterfaces/CacheOverlayItemImpl.java b/src/cgeo/geocaching/mapinterfaces/CacheOverlayItemImpl.java new file mode 100644 index 0000000..bdb8511 --- /dev/null +++ b/src/cgeo/geocaching/mapinterfaces/CacheOverlayItemImpl.java @@ -0,0 +1,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(); + +} |
