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

Revision 1169, 274 bytes checked in by stoecker, 3 years ago (diff)

removed usage of tab stops

  • Property svn:eol-style set to native
Line 
1//License: GPLv2 or later.
2//Copyright 2007 by Raphael Mack and others
3
4package org.openstreetmap.josm.data.gpx;
5
6public class GpxLink {
7    public String uri;
8    public String text;
9    public String type;
10
11    public GpxLink(String uri) {
12        this.uri = uri;
13    }
14}
Note: See TracBrowser for help on using the repository browser.