- Renamed a few classes in accordance with the model
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf / src / org / eclipse / linuxtools / tmf / stream / TmfStreamUpdateEvent.java
1 /**
2 *
3 */
4 package org.eclipse.linuxtools.tmf.stream;
5
6 import org.eclipse.linuxtools.tmf.trace.ITmfTraceEvent;
7
8 /**
9 * @author francois
10 *
11 */
12 public class TmfStreamUpdateEvent implements ITmfTraceEvent {
13
14 private final ITmfEventStream fEventStream;
15
16 public TmfStreamUpdateEvent(ITmfEventStream stream) {
17 fEventStream = stream;
18 }
19
20 public ITmfEventStream getEventStream() {
21 return fEventStream;
22 }
23 }
This page took 0.030512 seconds and 5 git commands to generate.