001// License: GPL. For details, see LICENSE file.
002package org.openstreetmap.josm.data.gpx;
003
004/**
005 * A link to an external resource (Web page, digital photo, video clip, etc) with additional information.
006 * @since 444
007 */
008public class GpxLink {
009
010    /** External resource URI */
011    public String uri;
012
013    /** Text to display on the hyperlink */
014    public String text;
015
016    /** Link type */
017    public String type;
018
019    /**
020     * Constructs a new {@code GpxLink}.
021     * @param uri External resource URI
022     */
023    public GpxLink(String uri) {
024        this.uri = uri;
025    }
026}