org.openstreetmap.josm.data.gpx
Interface GpxTrackSegment

All Known Implementing Classes:
ImmutableGpxTrackSegment

public interface GpxTrackSegment

Read-only gpx track segments. Implementations doesn't have to be immutable, but should always be thread safe.


Method Summary
 Bounds getBounds()
           
 int getUpdateCount()
           
 java.util.Collection<WayPoint> getWayPoints()
           
 double length()
           
 

Method Detail

getBounds

Bounds getBounds()

getWayPoints

java.util.Collection<WayPoint> getWayPoints()

length

double length()

getUpdateCount

int getUpdateCount()
Returns:
Number of times this track has been changed. Always 0 for read-only segments


JOSM