| Revision 5170,
553 bytes
checked in by Don-vip, 6 weeks ago
(diff) |
|
cleanup svn:mime-type properties preventing Java sources from being viewed as such on Trac
|
-
Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 | // License: GPL. For details, see LICENSE file. |
|---|
| 2 | package org.openstreetmap.josm.data.gpx; |
|---|
| 3 | |
|---|
| 4 | import java.util.Collection; |
|---|
| 5 | |
|---|
| 6 | import org.openstreetmap.josm.data.Bounds; |
|---|
| 7 | |
|---|
| 8 | /** |
|---|
| 9 | * Read-only gpx track segments. Implementations doesn't have to be immutable, but should always be thread safe. |
|---|
| 10 | * |
|---|
| 11 | */ |
|---|
| 12 | public interface GpxTrackSegment { |
|---|
| 13 | |
|---|
| 14 | Bounds getBounds(); |
|---|
| 15 | Collection<WayPoint> getWayPoints(); |
|---|
| 16 | double length(); |
|---|
| 17 | /** |
|---|
| 18 | * |
|---|
| 19 | * @return Number of times this track has been changed. Always 0 for read-only segments |
|---|
| 20 | */ |
|---|
| 21 | int getUpdateCount(); |
|---|
| 22 | } |
|---|
Note: See
TracBrowser
for help on using the repository browser.