blob: 7e9ef11dc1c93605ca28e6ea8dbd142b29f184b1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
/**
*
*/
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();
}
|