(no commit message)
[utils] / gps / src / main / java / org / wamblee / gps / track / TrackSegment.java
diff --git a/gps/src/main/java/org/wamblee/gps/track/TrackSegment.java b/gps/src/main/java/org/wamblee/gps/track/TrackSegment.java
deleted file mode 100644 (file)
index 2ecebff..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-package org.wamblee.gps.track;
-
-import org.wamblee.gps.geometry.Point;
-
-public interface TrackSegment {
-    
-    String getDescription();
-
-    /**
-     * @return Number of points in the track. 
-     */
-    int size();
-
-    double getMinCoordinate(int i);
-
-    double getMaxCoordinate(int i);
-
-    /**
-     * Gets the point at the given inded. 
-     * @param aIndex 0 <= aIndex < size()
-     * @return Point.
-     */
-    Point getPoint(int aIndex);
-
-}
\ No newline at end of file