Refactor TmfTrace and dependencies - minor changes
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core / src / org / eclipse / linuxtools / tmf / core / trace / ITmfTrace.java
index af9e741576271b1a5f1d3e7dcc21ef44adf45ac2..190306d7f92e3c7bda845c3988dfeb2800314012 100644 (file)
@@ -144,7 +144,7 @@ public interface ITmfTrace<T extends ITmfEvent> extends ITmfDataProvider<T> {
     /**
      * @return the trace event type
      */
-    public Class<T> getType();
+    public Class<T> getEventType();
 
     /**
      * @return the associated trace resource
@@ -185,6 +185,11 @@ public interface ITmfTrace<T extends ITmfEvent> extends ITmfDataProvider<T> {
      */
     public ITmfTimestamp getEndTime();
 
+    /**
+     * @return the streaming interval in ms (0 if not a streaming trace)
+     */
+    public long getStreamingInterval();
+
     // ------------------------------------------------------------------------
     // Trace positioning getters
     // ------------------------------------------------------------------------
@@ -276,13 +281,4 @@ public interface ITmfTrace<T extends ITmfEvent> extends ITmfDataProvider<T> {
      */
     public ITmfEvent readEvent(ITmfContext context);
 
-    // ------------------------------------------------------------------------
-    //
-    // ------------------------------------------------------------------------
-
-    /**
-     * @return the streaming interval in ms (0 if not a streaming trace)
-     */
-    public long getStreamingInterval();
-
 }
This page took 0.031937 seconds and 5 git commands to generate.