From 579ef7a535489d4aa632db11667a3b01deb6cafd Mon Sep 17 00:00:00 2001 From: Samuel Tardieu Date: Fri, 16 Sep 2011 14:36:28 +0200 Subject: Move sources into the main directory This prepares the inclusion of tests into the same repository. --- src/cgeo/geocaching/mapinterfaces/MapFactory.java | 32 ----------------------- 1 file changed, 32 deletions(-) delete mode 100644 src/cgeo/geocaching/mapinterfaces/MapFactory.java (limited to 'src/cgeo/geocaching/mapinterfaces/MapFactory.java') diff --git a/src/cgeo/geocaching/mapinterfaces/MapFactory.java b/src/cgeo/geocaching/mapinterfaces/MapFactory.java deleted file mode 100644 index 467947d..0000000 --- a/src/cgeo/geocaching/mapinterfaces/MapFactory.java +++ /dev/null @@ -1,32 +0,0 @@ -package cgeo.geocaching.mapinterfaces; - -import cgeo.geocaching.cgCoord; -import cgeo.geocaching.cgUser; -import cgeo.geocaching.geopoint.Geopoint; - -import android.app.Activity; -import android.content.Context; - -/** - * Defines functions of a factory class to get implementation specific objects - * (GeoPoints, OverlayItems, ...) - * - * @author rsudev - * - */ -public interface MapFactory { - - public Class getMapClass(); - - public int getMapViewId(); - - public int getMapLayoutId(); - - public GeoPointImpl getGeoPointBase(final Geopoint coords); - - CacheOverlayItemImpl getCacheOverlayItem(cgCoord coordinate, String type); - - public UserOverlayItemImpl getUserOverlayItemBase(Context context, - cgUser userOne); - -} -- cgit v1.1