source: josm/trunk/src/org/openstreetmap/josm/data/gpx/GpxLink.java@ 6380

Last change on this file since 6380 was 6380, checked in by Don-vip, 10 years ago

update license/copyright information

  • Property svn:eol-style set to native
File size: 250 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.data.gpx;
3
4public class GpxLink {
5 public String uri;
6 public String text;
7 public String type;
8
9 public GpxLink(String uri) {
10 this.uri = uri;
11 }
12}
Note: See TracBrowser for help on using the repository browser.