Changeset 9949 in josm for trunk/src/org/openstreetmap/josm/data/gpx/GpxTrackSegment.java
- Timestamp:
- 2016-03-07T21:45:35+01:00 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/gpx/GpxTrackSegment.java
r8510 r9949 8 8 /** 9 9 * Read-only gpx track segments. Implementations doesn't have to be immutable, but should always be thread safe. 10 * 10 * @since 2907 11 11 */ 12 12 public interface GpxTrackSegment { 13 13 14 /** 15 * Returns the segment bounds. 16 * @return the segment bounds 17 */ 14 18 Bounds getBounds(); 15 19 20 /** 21 * Returns the segment waypoints. 22 * @return the segment waypoints 23 */ 16 24 Collection<WayPoint> getWayPoints(); 17 25 26 /** 27 * Returns the segment length. 28 * @return the segment length 29 */ 18 30 double length(); 19 31 20 32 /** 21 * 33 * Returns the number of times this track has been changed 22 34 * @return Number of times this track has been changed. Always 0 for read-only segments 23 35 */
Note:
See TracChangeset
for help on using the changeset viewer.
