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

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

removed usage of tab stops

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