ctf: Fix CtfTmfTrace.readEnd() to use createTimestamp()
[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 * @deprecated Use the {@link CallStackAnalysis} from the core plugins instead
25 * of this class which was there only to register the view as output
26 */
27 @Deprecated
28 @NonNullByDefault
29 public abstract class AbstractCallStackAnalysis extends CallStackAnalysis {
30
31 /**
32 * Abstract constructor (should only be called via the sub-classes'
33 * constructors.
34 */
35 protected AbstractCallStackAnalysis() {
36 super();
37 registerOutput(new TmfAnalysisViewOutput(CallStackView.ID));
38 }
39 }
This page took 0.032135 seconds and 5 git commands to generate.