diff options
| author | SammysHP <sven@sammyshp.de> | 2011-09-14 21:42:32 +0200 |
|---|---|---|
| committer | SammysHP <sven@sammyshp.de> | 2011-09-14 21:42:32 +0200 |
| commit | 4f7c67407019de18fd53b640edb9682a346fbfef (patch) | |
| tree | 5a1d10843e8f5104e4202211f4792b5bfe830cb6 /src/cgeo/geocaching/ICache.java | |
| parent | 90e7bf968f6722b8df8b884f37617e7fc78901b5 (diff) | |
| download | cgeo-4f7c67407019de18fd53b640edb9682a346fbfef.zip cgeo-4f7c67407019de18fd53b640edb9682a346fbfef.tar.gz cgeo-4f7c67407019de18fd53b640edb9682a346fbfef.tar.bz2 | |
Formatting
Diffstat (limited to 'src/cgeo/geocaching/ICache.java')
| -rw-r--r-- | src/cgeo/geocaching/ICache.java | 156 |
1 files changed, 86 insertions, 70 deletions
diff --git a/src/cgeo/geocaching/ICache.java b/src/cgeo/geocaching/ICache.java index c91b959..1560700 100644 --- a/src/cgeo/geocaching/ICache.java +++ b/src/cgeo/geocaching/ICache.java @@ -3,81 +3,97 @@ */
package cgeo.geocaching;
-
/**
* Basic interface for caches
+ *
* @author blafoo
- *
+ *
*/
public interface ICache {
- /**
- * @return Geocode like GCxxxx
- */
- public String getGeocode();
- /**
- * @return Tradi, multi etc.
- */
- public String getType();
- /**
- * @return Displayed owner, might differ from the real owner
- */
- public String getOwner();
- /**
- * @return GC username of the owner
- */
- public String getOwnerReal();
- /**
- * @return Micro, small etc.
- */
- public String getSize();
- /**
- * @return Difficulty assessment
- */
- public Float getDifficulty();
- /**
- * @return Terrain assessment
- */
- public Float getTerrain();
- /**
- * @return Latitude, e.g. N 52° 12.345
- */
- public String getLatitude();
- /**
- * @return Longitude, e.g. E 9° 34.567
- */
- public String getLongitude();
- /**
- * @return true if the cache is disabled, false else
- */
- public boolean isDisabled();
- /**
- * @return true if the user is the owner of the cache, false else
- */
- public boolean isOwn();
- /**
- * @return true is the cache is archived, false else
- */
- public boolean isArchived();
- /**
- * @return true is the cache is a Premium Member cache only, false else
- */
- public boolean isMembersOnly();
- /**
- * @return Decrypted hint
- */
- public String getHint();
- /**
- * @return Description
- */
- public String getDescription();
- /**
- * @return Short Description
- */
- public String getShortDescription();
- /**
- * @return Name
- */
- public String getName();
+ /**
+ * @return Geocode like GCxxxx
+ */
+ public String getGeocode();
+
+ /**
+ * @return Tradi, multi etc.
+ */
+ public String getType();
+
+ /**
+ * @return Displayed owner, might differ from the real owner
+ */
+ public String getOwner();
+
+ /**
+ * @return GC username of the owner
+ */
+ public String getOwnerReal();
+
+ /**
+ * @return Micro, small etc.
+ */
+ public String getSize();
+
+ /**
+ * @return Difficulty assessment
+ */
+ public Float getDifficulty();
+
+ /**
+ * @return Terrain assessment
+ */
+ public Float getTerrain();
+
+ /**
+ * @return Latitude, e.g. N 52° 12.345
+ */
+ public String getLatitude();
+
+ /**
+ * @return Longitude, e.g. E 9° 34.567
+ */
+ public String getLongitude();
+
+ /**
+ * @return true if the cache is disabled, false else
+ */
+ public boolean isDisabled();
+
+ /**
+ * @return true if the user is the owner of the cache, false else
+ */
+ public boolean isOwn();
+
+ /**
+ * @return true is the cache is archived, false else
+ */
+ public boolean isArchived();
+
+ /**
+ * @return true is the cache is a Premium Member cache only, false else
+ */
+ public boolean isMembersOnly();
+
+ /**
+ * @return Decrypted hint
+ */
+ public String getHint();
+
+ /**
+ * @return Description
+ */
+ public String getDescription();
+
+ /**
+ * @return Short Description
+ */
+ public String getShortDescription();
+
+ /**
+ * @return Name
+ */
+ public String getName();
}
|
