diff options
Diffstat (limited to 'src/cgeo/geocaching/mapinterfaces')
13 files changed, 26 insertions, 26 deletions
diff --git a/src/cgeo/geocaching/mapinterfaces/ActivityImpl.java b/src/cgeo/geocaching/mapinterfaces/ActivityImpl.java index e99c018..043ca59 100644 --- a/src/cgeo/geocaching/mapinterfaces/ActivityImpl.java +++ b/src/cgeo/geocaching/mapinterfaces/ActivityImpl.java @@ -10,9 +10,9 @@ import android.view.View; /** * Defines the common functions of the provider-specific * MapActivity implementations. - * + * * @author rsudev - * + * */ public interface ActivityImpl { diff --git a/src/cgeo/geocaching/mapinterfaces/CacheOverlayItemImpl.java b/src/cgeo/geocaching/mapinterfaces/CacheOverlayItemImpl.java index efe5c12..df74a4c 100644 --- a/src/cgeo/geocaching/mapinterfaces/CacheOverlayItemImpl.java +++ b/src/cgeo/geocaching/mapinterfaces/CacheOverlayItemImpl.java @@ -5,9 +5,9 @@ import cgeo.geocaching.cgCoord; /** * Covers the common functions of the provider-specific * CacheOverlayItem implementations - * + * * @author rsudev - * + * */ public interface CacheOverlayItemImpl extends OverlayItemImpl { diff --git a/src/cgeo/geocaching/mapinterfaces/GeoPointImpl.java b/src/cgeo/geocaching/mapinterfaces/GeoPointImpl.java index b45b0fd..4142368 100644 --- a/src/cgeo/geocaching/mapinterfaces/GeoPointImpl.java +++ b/src/cgeo/geocaching/mapinterfaces/GeoPointImpl.java @@ -3,9 +3,9 @@ package cgeo.geocaching.mapinterfaces; /** * Defines the common functions of the provider-specific * GeoPoint implementations - * + * * @author rsudev - * + * */ public interface GeoPointImpl { diff --git a/src/cgeo/geocaching/mapinterfaces/ItemizedOverlayImpl.java b/src/cgeo/geocaching/mapinterfaces/ItemizedOverlayImpl.java index c4adcef..b738e41 100644 --- a/src/cgeo/geocaching/mapinterfaces/ItemizedOverlayImpl.java +++ b/src/cgeo/geocaching/mapinterfaces/ItemizedOverlayImpl.java @@ -9,9 +9,9 @@ import android.graphics.drawable.Drawable; /** * Defines the common functions to access the provider-specific * ItemizedOverlay implementation - * + * * @author rsudev - * + * */ public interface ItemizedOverlayImpl extends OverlayImpl { diff --git a/src/cgeo/geocaching/mapinterfaces/MapControllerImpl.java b/src/cgeo/geocaching/mapinterfaces/MapControllerImpl.java index 18a4ab6..00e31d2 100644 --- a/src/cgeo/geocaching/mapinterfaces/MapControllerImpl.java +++ b/src/cgeo/geocaching/mapinterfaces/MapControllerImpl.java @@ -3,9 +3,9 @@ package cgeo.geocaching.mapinterfaces; /** * Defines the common functions of the provider-specific * MapController implementations - * + * * @author rsudev - * + * */ public interface MapControllerImpl { diff --git a/src/cgeo/geocaching/mapinterfaces/MapFactory.java b/src/cgeo/geocaching/mapinterfaces/MapFactory.java index 26703c5..467947d 100644 --- a/src/cgeo/geocaching/mapinterfaces/MapFactory.java +++ b/src/cgeo/geocaching/mapinterfaces/MapFactory.java @@ -10,9 +10,9 @@ import android.content.Context; /** * Defines functions of a factory class to get implementation specific objects * (GeoPoints, OverlayItems, ...) - * + * * @author rsudev - * + * */ public interface MapFactory { diff --git a/src/cgeo/geocaching/mapinterfaces/MapProjectionImpl.java b/src/cgeo/geocaching/mapinterfaces/MapProjectionImpl.java index cad29f7..e3cc1fa 100644 --- a/src/cgeo/geocaching/mapinterfaces/MapProjectionImpl.java +++ b/src/cgeo/geocaching/mapinterfaces/MapProjectionImpl.java @@ -5,9 +5,9 @@ import android.graphics.Point; /** * Defines common functions of the provider-specific * MapProjection implementations - * + * * @author rsudev - * + * */ public interface MapProjectionImpl { diff --git a/src/cgeo/geocaching/mapinterfaces/MapViewImpl.java b/src/cgeo/geocaching/mapinterfaces/MapViewImpl.java index 9a1d4f8..2cd016f 100644 --- a/src/cgeo/geocaching/mapinterfaces/MapViewImpl.java +++ b/src/cgeo/geocaching/mapinterfaces/MapViewImpl.java @@ -13,9 +13,9 @@ import android.graphics.drawable.Drawable; /** * Defines common functions of the provider-specific * MapView implementations - * + * * @author rsudev - * + * */ public interface MapViewImpl { diff --git a/src/cgeo/geocaching/mapinterfaces/OnDragListener.java b/src/cgeo/geocaching/mapinterfaces/OnDragListener.java index 04c4469..4ae2d41 100644 --- a/src/cgeo/geocaching/mapinterfaces/OnDragListener.java +++ b/src/cgeo/geocaching/mapinterfaces/OnDragListener.java @@ -2,9 +2,9 @@ package cgeo.geocaching.mapinterfaces; /** * Notifies the parent class when a MapView has been dragged - * + * * @author cachapa - * + * */ public interface OnDragListener { diff --git a/src/cgeo/geocaching/mapinterfaces/OverlayBase.java b/src/cgeo/geocaching/mapinterfaces/OverlayBase.java index 024ec40..e544f0d 100644 --- a/src/cgeo/geocaching/mapinterfaces/OverlayBase.java +++ b/src/cgeo/geocaching/mapinterfaces/OverlayBase.java @@ -6,9 +6,9 @@ import android.graphics.Point; /** * Defines the base functions of the provider-independent * Overlay implementations - * + * * @author rsudev - * + * */ public interface OverlayBase { diff --git a/src/cgeo/geocaching/mapinterfaces/OverlayImpl.java b/src/cgeo/geocaching/mapinterfaces/OverlayImpl.java index fe79c7e..ede6872 100644 --- a/src/cgeo/geocaching/mapinterfaces/OverlayImpl.java +++ b/src/cgeo/geocaching/mapinterfaces/OverlayImpl.java @@ -3,9 +3,9 @@ package cgeo.geocaching.mapinterfaces; /** * Marker interface of the provider-specific * Overlay implementations - * + * * @author rsudev - * + * */ public interface OverlayImpl { diff --git a/src/cgeo/geocaching/mapinterfaces/OverlayItemImpl.java b/src/cgeo/geocaching/mapinterfaces/OverlayItemImpl.java index 642cb8d..3cc2061 100644 --- a/src/cgeo/geocaching/mapinterfaces/OverlayItemImpl.java +++ b/src/cgeo/geocaching/mapinterfaces/OverlayItemImpl.java @@ -5,9 +5,9 @@ import android.graphics.drawable.Drawable; /** * Common functions of the provider-specific * OverlayItem implementations - * + * * @author rsudev - * + * */ public interface OverlayItemImpl { diff --git a/src/cgeo/geocaching/mapinterfaces/UserOverlayItemImpl.java b/src/cgeo/geocaching/mapinterfaces/UserOverlayItemImpl.java index 48d6280..3e552e8 100644 --- a/src/cgeo/geocaching/mapinterfaces/UserOverlayItemImpl.java +++ b/src/cgeo/geocaching/mapinterfaces/UserOverlayItemImpl.java @@ -5,9 +5,9 @@ import cgeo.geocaching.cgUser; /** * Common functions of the provider-specific * UserOverlayItem implementations - * + * * @author rsudev - * + * */ public interface UserOverlayItemImpl extends OverlayItemImpl { |
