001    //License: GPLv2 or later
002    //Copyright 2007 by Raphael Mack and others
003    
004    package org.openstreetmap.josm.data.gpx;
005    
006    import java.util.Collection;
007    import java.util.LinkedList;
008    
009    public class GpxRoute extends WithAttributes {
010        public Collection<WayPoint> routePoints = new LinkedList<WayPoint>();
011    }