blob: 78e3b433f02afdd0637f65a6b8746b55861487e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/**
*
*/
package cgeo.geocaching;
import cgeo.geocaching.enumerations.WaypointType;
public interface IWaypoint extends ILogable, ICoordinates {
public abstract int getId();
public abstract WaypointType getWaypointType();
public abstract String getCoordType();
}
|