common: Generalize the BufferedBlockingQueue's concurrent test
[deliverable/tracecompass.git] / org.eclipse.tracecompass.btf.core / src / org / eclipse / tracecompass / btf / core / analysis / BtfAnalysisModule.java
CommitLineData
ff71e543
MK
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
7ce90559 13package org.eclipse.tracecompass.btf.core.analysis;
ff71e543 14
7ce90559 15import org.eclipse.tracecompass.btf.core.trace.BtfTrace;
2bdf0193
AM
16import org.eclipse.tracecompass.tmf.core.exceptions.TmfAnalysisException;
17import org.eclipse.tracecompass.tmf.core.statesystem.ITmfStateProvider;
18import org.eclipse.tracecompass.tmf.core.statesystem.TmfStateSystemAnalysisModule;
19import org.eclipse.tracecompass.tmf.core.trace.ITmfTrace;
ff71e543
MK
20
21/**
22 * Analysis module for the BTF base analysis
23 *
24 * @author Alexandre Montplaisir
25 */
26public class BtfAnalysisModule extends TmfStateSystemAnalysisModule {
27
28 @Override
f479550c 29 public boolean setTrace(ITmfTrace trace) throws TmfAnalysisException {
ff71e543 30 if (!(trace instanceof BtfTrace)) {
f479550c 31 return false;
ff71e543 32 }
f479550c 33 return super.setTrace(trace);
ff71e543
MK
34 }
35
36 @Override
37 protected BtfTrace getTrace() {
38 return (BtfTrace) super.getTrace();
39 }
40
41 @Override
42 protected ITmfStateProvider createStateProvider() {
43 return new BtfStateProvider(getTrace());
44 }
45}
This page took 0.042708 seconds and 5 git commands to generate.