btf: fix order of modifiers in BtfEventPropertySource
[deliverable/tracecompass.git] / org.eclipse.tracecompass.lttng2.ust.ui / src / org / eclipse / tracecompass / lttng2 / ust / ui / analysis / callstack / LttngUstCallStackAnalysis.java
CommitLineData
50659279
AM
1/*******************************************************************************
2 * Copyright (c) 2014 Ericsson
3 *
4 * All rights reserved. This program and the accompanying materials are
5 * made available under the terms of the Eclipse Public License v1.0 which
6 * accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
8 *
9 * Contributors:
10 * Alexandre Montplaisir - Initial API and implementation
11 *******************************************************************************/
12
9bc60be7 13package org.eclipse.tracecompass.lttng2.ust.ui.analysis.callstack;
50659279 14
d0c7e4ba
AM
15import static org.eclipse.tracecompass.common.core.NonNullUtils.checkNotNull;
16
9bc60be7
AM
17import org.eclipse.tracecompass.internal.lttng2.ust.core.trace.callstack.LttngUstCallStackProvider;
18import org.eclipse.tracecompass.lttng2.ust.core.trace.LttngUstTrace;
2bdf0193
AM
19import org.eclipse.tracecompass.tmf.core.exceptions.TmfAnalysisException;
20import org.eclipse.tracecompass.tmf.core.statesystem.ITmfStateProvider;
21import org.eclipse.tracecompass.tmf.core.trace.ITmfTrace;
22import org.eclipse.tracecompass.tmf.ui.views.callstack.AbstractCallStackAnalysis;
50659279
AM
23
24/**
25 * Call-stack analysis to populate the TMF CallStack View from UST cyg-profile
26 * events.
27 *
28 * @author Alexandre Montplaisir
29 * @since 3.0
30 */
31public class LttngUstCallStackAnalysis extends AbstractCallStackAnalysis {
32
33 @Override
34 public void setTrace(ITmfTrace trace) throws TmfAnalysisException {
35 if (!(trace instanceof LttngUstTrace)) {
36 throw new IllegalArgumentException("Trace should be of type LttngUstTrace"); //$NON-NLS-1$
37 }
38 super.setTrace(trace);
39 }
40
41 @Override
42 protected LttngUstTrace getTrace() {
43 return (LttngUstTrace) super.getTrace();
44 }
45
46 @Override
47 protected ITmfStateProvider createStateProvider() {
d0c7e4ba 48 return new LttngUstCallStackProvider(checkNotNull(getTrace()));
50659279
AM
49 }
50
51}
This page took 0.041392 seconds and 5 git commands to generate.