os.linux: Rename the "kernelanalysis" package to just "kernel"
[deliverable/tracecompass.git] / lttng / org.eclipse.tracecompass.lttng2.kernel.core.tests / perf / org / eclipse / tracecompass / lttng2 / kernel / core / tests / perf / analysis / kernel / KernelAnalysisModuleNullBeStub.java
CommitLineData
e34d62dc
GB
1/*******************************************************************************
2 * Copyright (c) 2016 École Polytechnique de Montréal
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
10package org.eclipse.tracecompass.lttng2.kernel.core.tests.perf.analysis.kernel;
11
12import org.eclipse.jdt.annotation.NonNull;
0f7a12d3 13import org.eclipse.tracecompass.analysis.os.linux.core.kernel.KernelAnalysisModule;
e34d62dc
GB
14
15/**
16 * This class is an extension of {@link KernelAnalysisModule} that uses a null
17 * backend instead of the default one. This allows to benchmark this analysis
18 * without benchmarking the insertions in the state system.
19 *
20 * @author Geneviève Bastien
21 */
22public class KernelAnalysisModuleNullBeStub extends KernelAnalysisModule {
23
24 @Override
25 protected @NonNull StateSystemBackendType getBackendType() {
26 return StateSystemBackendType.NULL;
27 }
28
29}
This page took 0.037617 seconds and 5 git commands to generate.