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

Last change on this file since 3083 was 1169, checked in by stoecker, 15 years ago

removed usage of tab stops

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