Remove the generic location (replace by Comparable)
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core / src / org / eclipse / linuxtools / tmf / core / trace / ITmfTrace.java
index 4b18b9c860cac3eed8352485e4fcb87b1a2579d5..ec087bea23f05da4a3bf74fef847924f563fe7ee 100644 (file)
@@ -207,7 +207,7 @@ public interface ITmfTrace extends ITmfDataProvider {
     /**
      * @return the current trace location
      */
-    public ITmfLocation<?> getCurrentLocation();
+    public ITmfLocation getCurrentLocation();
 
     /**
      * Returns the ratio (proportion) corresponding to the specified location.
@@ -215,7 +215,7 @@ public interface ITmfTrace extends ITmfDataProvider {
      * @param location a trace specific location
      * @return a floating-point number between 0.0 (beginning) and 1.0 (end)
      */
-    public double getLocationRatio(ITmfLocation<?> location);
+    public double getLocationRatio(ITmfLocation location);
 
     // ------------------------------------------------------------------------
     // SeekEvent operations (returning a trace context)
@@ -233,7 +233,7 @@ public interface ITmfTrace extends ITmfDataProvider {
      * @param location the trace specific location
      * @return a context which can later be used to read the corresponding event
      */
-    public ITmfContext seekEvent(ITmfLocation<?> location);
+    public ITmfContext seekEvent(ITmfLocation location);
 
     /**
      * Position the trace at the 'rank'th event in the trace.
This page took 0.026137 seconds and 5 git commands to generate.