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

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

fix #10489 - Add additional attributes to GPX Export for nodes + GPX code improvements

  • Property svn:eol-style set to native
File size: 576 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.data.gpx;
3
4/**
5 * A link to an external resource (Web page, digital photo, video clip, etc) with additional information.
6 * @since 444
7 */
8public class GpxLink {
9
10 /** External resource URI */
11 public String uri;
12
13 /** Text to display on the hyperlink */
14 public String text;
15
16 /** Link type */
17 public String type;
18
19 /**
20 * Constructs a new {@code GpxLink}.
21 * @param uri External resource URI
22 */
23 public GpxLink(String uri) {
24 this.uri = uri;
25 }
26}
Note: See TracBrowser for help on using the repository browser.