blob: 0f946b371477d0a00ddd27b5430d121335359c54 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
package cgeo.geocaching;
import android.sax.Element;
public final class GPX11Parser extends GPXParser {
public GPX11Parser(cgeoapplication appIn, int listIdIn,
cgSearch searchIn) {
super(appIn, listIdIn, searchIn, "http://www.topografix.com/GPX/1/1", "1.1");
}
@Override
protected Element getCacheParent(Element waypoint) {
return waypoint.getChild(namespace, "extensions");
}
}
|