aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/IBasicCache.java
diff options
context:
space:
mode:
Diffstat (limited to 'main/src/cgeo/geocaching/IBasicCache.java')
-rw-r--r--main/src/cgeo/geocaching/IBasicCache.java46
1 files changed, 0 insertions, 46 deletions
diff --git a/main/src/cgeo/geocaching/IBasicCache.java b/main/src/cgeo/geocaching/IBasicCache.java
deleted file mode 100644
index 7e9ef11..0000000
--- a/main/src/cgeo/geocaching/IBasicCache.java
+++ /dev/null
@@ -1,46 +0,0 @@
-/**
- *
- */
-package cgeo.geocaching;
-
-import cgeo.geocaching.enumerations.CacheSize;
-import cgeo.geocaching.enumerations.CacheType;
-
-public interface IBasicCache extends ILogable, ICoordinates {
-
- public abstract String getGuid();
-
- /**
- * @return Tradi, multi etc.
- */
- public abstract CacheType getType();
-
- /**
- * @return Micro, small etc.
- */
- public abstract CacheSize getSize();
-
- /**
- * @return true if the user already found the cache
- *
- */
- public abstract boolean isFound();
-
- /**
- * @return true if the cache is disabled, false else
- */
- public abstract boolean isDisabled();
-
- /**
- * @return Difficulty assessment
- */
- public abstract float getDifficulty();
-
- /**
- * @return Terrain assessment
- */
- public abstract float getTerrain();
-
-
-
-}