source:
josm/trunk/src/org/openstreetmap/josm/data/gpx/GpxLink.java
@
5241
| Revision 1169, 274 bytes checked in by stoecker, 3 years ago (diff) | |
|---|---|
|
|
| Line | |
|---|---|
| 1 | //License: GPLv2 or later. |
| 2 | //Copyright 2007 by Raphael Mack and others |
| 3 | |
| 4 | package org.openstreetmap.josm.data.gpx; |
| 5 | |
| 6 | public 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.
