source: josm/src/org/openstreetmap/josm/data/osm/Track.java@ 1

Last change on this file since 1 was 1, checked in by imi, 21 years ago

wiki 19:37, 27. Sep 2005

File size: 353 bytes
Line 
1package org.openstreetmap.josm.data.osm;
2
3import java.util.ArrayList;
4import java.util.List;
5
6/**
7 * One full track, consisting of several track segments chained together.
8 *
9 * @author imi
10 */
11public 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.