blob: 2b992e115ed527c5ce0bdb786b589f890776cdbb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
package cgeo.geocaching;
import cgeo.geocaching.enumerations.WaypointType;
public interface IWaypoint extends ILogable, ICoordinates {
/**
* Return an unique waypoint id.
*
* @return a non-negative id if set, -1 if unset
*/
public abstract int getId();
public abstract WaypointType getWaypointType();
public abstract String getCoordType();
}
|