ctf: Rename Stream* classes to CTFStream*
[deliverable/tracecompass.git] / org.eclipse.linuxtools.ctf.core / src / org / eclipse / linuxtools / ctf / core / event / IEventDeclaration.java
index e10470d685f8e0f49d3e6b995be88a045dfcef75..6107114716622aa35a46e0395c3e35a99a30b5b8 100644 (file)
@@ -17,8 +17,8 @@ import org.eclipse.jdt.annotation.NonNull;
 import org.eclipse.linuxtools.ctf.core.event.io.BitBuffer;
 import org.eclipse.linuxtools.ctf.core.event.types.StructDeclaration;
 import org.eclipse.linuxtools.ctf.core.trace.CTFReaderException;
-import org.eclipse.linuxtools.ctf.core.trace.Stream;
-import org.eclipse.linuxtools.ctf.core.trace.StreamInputReader;
+import org.eclipse.linuxtools.ctf.core.trace.CTFStream;
+import org.eclipse.linuxtools.ctf.core.trace.CTFStreamInputReader;
 
 /**
  * Representation of one type of event. A bit like "int" or "long" but for trace
@@ -44,7 +44,7 @@ public interface IEventDeclaration {
      *             IOExceptions.
      * @since 3.0
      */
-    EventDefinition createDefinition(StreamInputReader streamInputReader, @NonNull BitBuffer input, long timestamp) throws CTFReaderException;
+    EventDefinition createDefinition(CTFStreamInputReader streamInputReader, @NonNull BitBuffer input, long timestamp) throws CTFReaderException;
 
     /**
      * Gets the name of an event declaration
@@ -75,12 +75,12 @@ public interface IEventDeclaration {
     Long getId();
 
     /**
-     * Gets the {@link Stream} of an event declaration
+     * Gets the {@link CTFStream} of an event declaration
      *
      * @return the stream
-     * @since 2.0
+     * @since 3.0
      */
-    Stream getStream();
+    CTFStream getStream();
 
     /**
      * What is the log level of this event?
This page took 0.026277 seconds and 5 git commands to generate.