source: josm/trunk/src/org/openstreetmap/josm/data/gpx/Extensions.java@ 6830

Last change on this file since 6830 was 5679, checked in by bastiK, 11 years ago

fixed #2900 - Saving and reopening of downloaded gpx segments displays distorted data (see #7247; namespace aware xml parsing is needed now, so #7247 is open again)

File size: 388 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.data.gpx;
3
4import java.util.LinkedHashMap;
5import java.util.Map;
6
7/**
8 * Data class for extensions in a GPX-File.
9 */
10public class Extensions extends LinkedHashMap<String, String> {
11
12 public Extensions(Map<? extends String, ? extends String> m) {
13 super(m);
14 }
15
16 public Extensions() {
17 }
18}
Note: See TracBrowser for help on using the repository browser.