tmf: Move TmfEventRequest.ALL_DATA to the interface
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / internal / tmf / ui / commands / ExportToTextRequest.java
index eee476a518fdb483ec9efa319fafec7679c29438..57d5e7438696f46e12fc735c439cfd639064dcd8 100644 (file)
@@ -18,6 +18,7 @@ import java.io.Writer;
 import org.eclipse.linuxtools.tmf.core.event.ITmfEvent;
 import org.eclipse.linuxtools.tmf.core.event.ITmfEventField;
 import org.eclipse.linuxtools.tmf.core.filter.ITmfFilter;
+import org.eclipse.linuxtools.tmf.core.request.ITmfEventRequest;
 import org.eclipse.linuxtools.tmf.core.request.TmfEventRequest;
 import org.eclipse.linuxtools.tmf.core.timestamp.TmfTimeRange;
 import org.eclipse.linuxtools.tmf.ui.viewers.events.TmfEventsTable;
@@ -43,7 +44,7 @@ public class ExportToTextRequest extends TmfEventRequest {
      *            the {@link TmfEventsTable} requesting the export (may be <code>null</code>)
      */
     public ExportToTextRequest(Writer w, ITmfFilter filter, TmfEventsTable table) {
-        super(ITmfEvent.class, TmfTimeRange.ETERNITY, 0, TmfEventRequest.ALL_DATA, ExecutionType.FOREGROUND);
+        super(ITmfEvent.class, TmfTimeRange.ETERNITY, 0, ITmfEventRequest.ALL_DATA, ExecutionType.FOREGROUND);
         this.fWriter = w;
         this.fFilter = filter;
         this.fTable = table;
This page took 0.024072 seconds and 5 git commands to generate.