79b1340f28895cafa920cceff8bdecca82300b7c
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / parsers / custom / CustomEventContent.java
1 package org.eclipse.linuxtools.tmf.ui.parsers.custom;
2
3 import org.eclipse.linuxtools.tmf.core.event.ITmfEventField;
4 import org.eclipse.linuxtools.tmf.core.event.TmfEventField;
5
6 public class CustomEventContent extends TmfEventField {
7
8 CustomEvent fParent;
9
10 public CustomEventContent(CustomEvent parent, String content) {
11 super(ITmfEventField.ROOT_FIELD_ID, content);
12 fParent = parent;
13 }
14
15 // @Override
16 // protected void parseContent() {
17 // CustomEvent event = (CustomEvent) fParentEvent;
18 // fFields = event.extractItemFields();
19 // }
20 //
21 // @Override
22 // public String toString() {
23 // return Arrays.toString(getFields());
24 // }
25
26 }
This page took 0.031536 seconds and 5 git commands to generate.