6c39a1f438a32355b880095247fe241b396002b9
[deliverable/tracecompass.git] / tmf / org.eclipse.tracecompass.tmf.ui / src / org / eclipse / tracecompass / tmf / ui / views / callstack / AbstractCallStackAnalysis.java
1 /*******************************************************************************
2 * Copyright (c) 2014, 2016 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 * Patrick Tasse - Add methods to get attribute paths
12 *******************************************************************************/
13
14 package org.eclipse.tracecompass.tmf.ui.views.callstack;
15
16 import org.eclipse.jdt.annotation.NonNullByDefault;
17 import org.eclipse.tracecompass.tmf.core.callstack.CallStackAnalysis;
18 import org.eclipse.tracecompass.tmf.ui.analysis.TmfAnalysisViewOutput;
19
20 /**
21 * The base classes for analyses who want to populate the CallStack View.
22 *
23 * @author Alexandre Montplaisir
24 */
25 /*
26 * FIXME: deprecate at next release when we can move the callstack view to an
27 * extension point
28 */
29 @NonNullByDefault
30 public abstract class AbstractCallStackAnalysis extends CallStackAnalysis {
31
32 /**
33 * Abstract constructor (should only be called via the sub-classes'
34 * constructors.
35 */
36 protected AbstractCallStackAnalysis() {
37 super();
38 registerOutput(new TmfAnalysisViewOutput(CallStackView.ID));
39 }
40 }
This page took 0.034224 seconds and 4 git commands to generate.