source: josm/trunk/src/org/openstreetmap/josm/data/gpx/GpxTrack.java@ 8308

Last change on this file since 8308 was 7509, checked in by stoecker, 10 years ago

remove tabs

  • Property svn:eol-style set to native
File size: 629 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.data.gpx;
3
4import java.util.Collection;
5import java.util.Map;
6
7import org.openstreetmap.josm.data.Bounds;
8
9/**
10 * Read-only gpx track. Implementations doesn't have to be immutable, but should always be thread safe.
11 *
12 */
13public interface GpxTrack extends IWithAttributes {
14
15 Collection<GpxTrackSegment> getSegments();
16 Map<String, Object> getAttributes();
17 Bounds getBounds();
18 double length();
19
20 /**
21 *
22 * @return Number of times this track has been changed. Always 0 for read-only tracks
23 */
24 int getUpdateCount();
25}
Note: See TracBrowser for help on using the repository browser.