source: josm/trunk/src/org/openstreetmap/josm/data/gpx/GpxRoute.java@ 5681

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

removed usage of tab stops

  • Property svn:eol-style set to native
File size: 295 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 GpxRoute extends WithAttributes {
10 public Collection<WayPoint> routePoints = new LinkedList<WayPoint>();
11}
Note: See TracBrowser for help on using the repository browser.