Merge master in TmfTraceModel
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core / src / org / eclipse / linuxtools / tmf / core / ctfadaptor / CtfTmfEventType.java
CommitLineData
ce2388e0
FC
1package org.eclipse.linuxtools.tmf.core.ctfadaptor;
2
3import org.eclipse.linuxtools.tmf.core.event.ITmfEventField;
4import org.eclipse.linuxtools.tmf.core.event.TmfEventType;
5
6public class CtfTmfEventType extends TmfEventType {
7
8 public CtfTmfEventType(String contextId, String eventName,
9 ITmfEventField content) {
10 super(contextId, eventName, content);
11 }
12
13 @Override
14 public String toString()
15 {
16 return this.getName();
17 }
18}
This page took 0.024775 seconds and 5 git commands to generate.