tmf/ctf: Make CtfLocationInfo inline with code style
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core / src / org / eclipse / linuxtools / tmf / core / ctfadaptor / CtfTmfContext.java
index df2076b5e196114e36543581d30aec10ba1a84ca..ad383a59e1dad9c2dce521fe25b496fe3a24c201 100644 (file)
@@ -14,7 +14,7 @@
 package org.eclipse.linuxtools.tmf.core.ctfadaptor;
 
 import org.eclipse.linuxtools.tmf.core.trace.ITmfContext;
-import org.eclipse.linuxtools.tmf.core.trace.ITmfLocation;
+import org.eclipse.linuxtools.tmf.core.trace.location.ITmfLocation;
 
 /**
  * Lightweight Context for CtfTmf traces. Should only use 3 references, 1 ref to
@@ -60,6 +60,9 @@ public class CtfTmfContext implements ITmfContext {
         return curRank;
     }
 
+    /**
+     * @since 3.0
+     */
     @Override
     public ITmfLocation getLocation() {
         return curLocation;
@@ -70,6 +73,9 @@ public class CtfTmfContext implements ITmfContext {
         return curRank != CtfLocation.INVALID_LOCATION.getTimestamp();
     }
 
+    /**
+     * @since 3.0
+     */
     @Override
     public void setLocation(ITmfLocation location) {
         curLocation = (CtfLocation) location;
This page took 0.02468 seconds and 5 git commands to generate.