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