aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/ILogable.java
blob: 6c793fc500b779300905c20b88452957461ee2a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/**
 *
 */
package cgeo.geocaching;


/**
 * @author blafoo
 *
 */
public interface ILogable {

    /**
     * @return Geocode like GCxxxx
     */
    public abstract String getGeocode();

    /**
     * @return Name
     */
    public abstract String getName();

}