X-Git-Url: http://drtracing.org/?a=blobdiff_plain;ds=sidebyside;f=org.eclipse.linuxtools.lttng2.kernel.ui%2Fsrc%2Forg%2Feclipse%2Flinuxtools%2Finternal%2Flttng2%2Fkernel%2Fui%2Fviews%2Fcontrolflow%2FControlFlowEntry.java;h=598deee1c145dcbb75b4fec8f1962dcc8f791b68;hb=1cf2531114f2ff545e67a9450dfa7243fb5dacdd;hp=cd591ce5a0402cd1fc2ffc30a8524e6a3ae17e3a;hpb=4c9c0c87292855805e5e530a28c522d2868d70dd;p=deliverable%2Ftracecompass.git diff --git a/org.eclipse.linuxtools.lttng2.kernel.ui/src/org/eclipse/linuxtools/internal/lttng2/kernel/ui/views/controlflow/ControlFlowEntry.java b/org.eclipse.linuxtools.lttng2.kernel.ui/src/org/eclipse/linuxtools/internal/lttng2/kernel/ui/views/controlflow/ControlFlowEntry.java index cd591ce5a0..598deee1c1 100644 --- a/org.eclipse.linuxtools.lttng2.kernel.ui/src/org/eclipse/linuxtools/internal/lttng2/kernel/ui/views/controlflow/ControlFlowEntry.java +++ b/org.eclipse.linuxtools.lttng2.kernel.ui/src/org/eclipse/linuxtools/internal/lttng2/kernel/ui/views/controlflow/ControlFlowEntry.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2012, 2013 Ericsson, École Polytechnique de Montréal + * Copyright (c) 2012, 2014 Ericsson, École Polytechnique de Montréal * * All rights reserved. This program and the accompanying materials are * made available under the terms of the Eclipse Public License v1.0 which @@ -13,7 +13,7 @@ package org.eclipse.linuxtools.internal.lttng2.kernel.ui.views.controlflow; -import org.eclipse.linuxtools.lttng2.kernel.core.trace.LttngKernelTrace; +import org.eclipse.linuxtools.tmf.core.trace.ITmfTrace; import org.eclipse.linuxtools.tmf.ui.widgets.timegraph.model.TimeGraphEntry; /** @@ -21,7 +21,7 @@ import org.eclipse.linuxtools.tmf.ui.widgets.timegraph.model.TimeGraphEntry; */ public class ControlFlowEntry extends TimeGraphEntry { - private final LttngKernelTrace fTrace; + private final ITmfTrace fTrace; private final int fThreadId; private final int fParentThreadId; private final int fThreadQuark; @@ -44,7 +44,7 @@ public class ControlFlowEntry extends TimeGraphEntry { * @param endTime * The end time of this process */ - public ControlFlowEntry(int quark, LttngKernelTrace trace, String execName, int threadId, int parentThreadId, long startTime, long endTime) { + public ControlFlowEntry(int quark, ITmfTrace trace, String execName, int threadId, int parentThreadId, long startTime, long endTime) { super(execName, startTime, endTime); fTrace = trace; fThreadId = threadId; @@ -62,11 +62,11 @@ public class ControlFlowEntry extends TimeGraphEntry { } /** - * Get the entry's kernel trace + * Get the entry's trace * - * @return the entry's kernel trace + * @return the entry's trace */ - public LttngKernelTrace getTrace() { + public ITmfTrace getTrace() { return fTrace; }