Fix custom traces not indexed for wizard output preview table
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / internal / tmf / ui / parsers / custom / CustomTxtTrace.java
index c9fdfa31601791553b7f6df56e2a864e89f313d9..c35f3915bef2e9781bc8e1f4f685c69b93f45535 100644 (file)
@@ -31,6 +31,7 @@ import org.eclipse.linuxtools.tmf.core.io.BufferedRandomAccessFile;
 import org.eclipse.linuxtools.tmf.core.trace.ITmfContext;
 import org.eclipse.linuxtools.tmf.core.trace.ITmfEventParser;
 import org.eclipse.linuxtools.tmf.core.trace.ITmfLocation;
+import org.eclipse.linuxtools.tmf.core.trace.ITmfTraceIndexer;
 import org.eclipse.linuxtools.tmf.core.trace.TmfContext;
 import org.eclipse.linuxtools.tmf.core.trace.TmfLongLocation;
 import org.eclipse.linuxtools.tmf.core.trace.TmfTrace;
@@ -79,6 +80,11 @@ public class CustomTxtTrace extends TmfTrace implements ITmfEventParser {
         }
     }
 
+    @Override
+    public ITmfTraceIndexer getIndexer() {
+        return super.getIndexer();
+    }
+
     @Override
     public synchronized TmfContext seekEvent(final ITmfLocation location) {
         final CustomTxtTraceContext context = new CustomTxtTraceContext(NULL_LOCATION, ITmfContext.UNKNOWN_RANK);
This page took 0.023813 seconds and 5 git commands to generate.