Patch for Bug287563
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf / src / org / eclipse / linuxtools / tmf / trace / TmfTraceUpdateEvent.java
1 /**
2 *
3 */
4 package org.eclipse.linuxtools.tmf.trace;
5
6
7 /**
8 * @author francois
9 *
10 */
11 public class TmfTraceUpdateEvent implements ITmfTraceEvent {
12
13 private final TmfTrace fEventLog;
14
15 public TmfTraceUpdateEvent(TmfTrace eventLog) {
16 fEventLog = eventLog;
17 }
18
19 public TmfTrace getEventLog() {
20 return fEventLog;
21 }
22 }
This page took 0.031653 seconds and 5 git commands to generate.