ctf: Introduce IEventDefinition
[deliverable/tracecompass.git] / lttng / org.eclipse.tracecompass.lttng2.ust.core / src / org / eclipse / tracecompass / lttng2 / ust / core / trace / LttngUstEvent.java
index 3494ff45c596d0027244abad28e67354a5d41e33..e823405bcae5df2403a584b0de393840cfdd0341 100644 (file)
@@ -11,9 +11,9 @@ package org.eclipse.tracecompass.lttng2.ust.core.trace;
 
 import org.eclipse.jdt.annotation.NonNullByDefault;
 import org.eclipse.jdt.annotation.Nullable;
-import org.eclipse.tracecompass.ctf.core.event.EventDefinition;
 import org.eclipse.tracecompass.ctf.core.event.IEventDeclaration;
-import org.eclipse.tracecompass.lttng2.ust.core.analysis.debuginfo.UstDebugInfoAspect;
+import org.eclipse.tracecompass.ctf.core.event.IEventDefinition;
+import org.eclipse.tracecompass.lttng2.ust.core.analysis.debuginfo.UstDebugInfoSourceAspect;
 import org.eclipse.tracecompass.tmf.core.event.lookup.ITmfCallsite;
 import org.eclipse.tracecompass.tmf.core.event.lookup.ITmfSourceLookup;
 import org.eclipse.tracecompass.tmf.core.timestamp.TmfNanoTimestamp;
@@ -57,12 +57,12 @@ public class LttngUstEvent extends CtfTmfEvent implements ITmfSourceLookup {
      *            The event definition
      */
     protected LttngUstEvent(CtfTmfTrace trace, long rank, TmfNanoTimestamp timestamp,
-            String channel, int cpu, IEventDeclaration declaration, EventDefinition eventDefinition) {
+            String channel, int cpu, IEventDeclaration declaration, IEventDefinition eventDefinition) {
         super(trace, rank, timestamp, channel, cpu, declaration, eventDefinition);
     }
 
     @Override
     public @Nullable ITmfCallsite getCallsite() {
-        return UstDebugInfoAspect.INSTANCE.resolve(this);
+        return UstDebugInfoSourceAspect.INSTANCE.resolve(this);
     }
 }
This page took 0.034518 seconds and 5 git commands to generate.