Merge master in TmfTraceModel
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core / src / org / eclipse / linuxtools / tmf / core / ctfadaptor / CtfTmfEventType.java
1 package org.eclipse.linuxtools.tmf.core.ctfadaptor;
2
3 import org.eclipse.linuxtools.tmf.core.event.ITmfEventField;
4 import org.eclipse.linuxtools.tmf.core.event.TmfEventType;
5
6 public 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.035953 seconds and 6 git commands to generate.