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

Last change on this file since 7937 was 7937, checked in by bastiK, 10 years ago

add subversion property svn:eol=native

  • Property svn:eol-style set to native
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.