source: josm/trunk/src/org/openstreetmap/josm/data/gpx/GpxTrack.java@ 571

Last change on this file since 571 was 444, checked in by framm, 16 years ago
  • patch for better GPX file support by Raphael Mack <ramack@…>
  • dropped support for CSV files
File size: 316 bytes
Line 
1//License: GPLv2 or later
2//Copyright 2007 by Raphael Mack and others
3
4package org.openstreetmap.josm.data.gpx;
5
6import java.util.Collection;
7import java.util.LinkedList;
8
9public class GpxTrack extends WithAttributes {
10 public Collection<Collection<WayPoint>> trackSegs
11 = new LinkedList<Collection<WayPoint>>();
12}
Note: See TracBrowser for help on using the repository browser.