tmf.xml: Add mapping group to XML description
[deliverable/tracecompass.git] / tmf / org.eclipse.tracecompass.tmf.analysis.xml.core / src / org / eclipse / tracecompass / internal / tmf / analysis / xml / core / model / readonly / TmfXmlReadOnlyModelFactory.java
index 085d30f912ad9d4127f2f31128be99209aa84e87..3c1b96a582dbb61f2e3de8614d962655eef44af6 100644 (file)
@@ -23,6 +23,7 @@ import org.eclipse.tracecompass.internal.tmf.analysis.xml.core.model.TmfXmlActio
 import org.eclipse.tracecompass.internal.tmf.analysis.xml.core.model.TmfXmlCondition;
 import org.eclipse.tracecompass.internal.tmf.analysis.xml.core.model.TmfXmlEventHandler;
 import org.eclipse.tracecompass.internal.tmf.analysis.xml.core.model.TmfXmlFsm;
+import org.eclipse.tracecompass.internal.tmf.analysis.xml.core.model.TmfXmlMapEntry;
 import org.eclipse.tracecompass.internal.tmf.analysis.xml.core.model.TmfXmlLocation;
 import org.eclipse.tracecompass.internal.tmf.analysis.xml.core.model.TmfXmlPatternEventHandler;
 import org.eclipse.tracecompass.internal.tmf.analysis.xml.core.model.TmfXmlPatternSegmentBuilder;
@@ -131,4 +132,9 @@ public class TmfXmlReadOnlyModelFactory implements ITmfXmlModelFactory {
     public TmfXmlPatternSegmentBuilder createPatternSegmentBuilder(Element node, IXmlStateSystemContainer container) {
         return new TmfXmlPatternSegmentBuilder(this, node, container);
     }
+
+    @Override
+    public @NonNull TmfXmlMapEntry createMapEntry(@NonNull Element node, @NonNull IXmlStateSystemContainer container) {
+        return new TmfXmlMapEntry(this, node, container);
+    }
 }
This page took 0.02431 seconds and 5 git commands to generate.