source:
josm/src/org/openstreetmap/josm/data/osm/Track.java@
1
| Last change on this file since 1 was 1, checked in by , 21 years ago | |
|---|---|
| File size: 353 bytes | |
| Line | |
|---|---|
| 1 | package org.openstreetmap.josm.data.osm; |
| 2 | |
| 3 | import java.util.ArrayList; |
| 4 | import java.util.List; |
| 5 | |
| 6 | /** |
| 7 | * One full track, consisting of several track segments chained together. |
| 8 | * |
| 9 | * @author imi |
| 10 | */ |
| 11 | public class Track extends OsmPrimitive { |
| 12 | |
| 13 | /** |
| 14 | * All track segments in this track |
| 15 | */ |
| 16 | public List<LineSegment> segments = new ArrayList<LineSegment>(); |
| 17 | } |
Note:
See TracBrowser
for help on using the repository browser.
