Rename xxx.lttng to xxx.lttng.core
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf / src / org / eclipse / linuxtools / tmf / trace / ITmfLocation.java
index bd3e816b6b38db0aa2456ef3545571a13dd6836a..843b0169f6c604954a767fcb44d0f8741fa230b9 100644 (file)
@@ -15,10 +15,14 @@ package org.eclipse.linuxtools.tmf.trace;
 /**
  * <b><u>ITmfLocation</u></b>
  * <p>
- * This is a place-holder for the context objects.
+ * This is a place-holder for the location objects.
  */
-public interface ITmfLocation extends Cloneable {
-       
-       public ITmfLocation clone();
+public interface ITmfLocation<L extends Comparable<?>> extends Cloneable {
+
+       public void setLocation(L location);
+
+       public L getLocation();
+
+       public ITmfLocation<L> clone();
 
 }
This page took 0.023866 seconds and 5 git commands to generate.