tmf/ctf: Speed up CtfTmfEvent#getType
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.core.tests / stubs / org / eclipse / tracecompass / tmf / tests / stubs / analysis / TestStateSystemModule.java
CommitLineData
8a6ff07f 1/*******************************************************************************
60ae41e1 2 * Copyright (c) 2013, 2014 École Polytechnique de Montréal
8a6ff07f
GB
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 * Geneviève Bastien - Initial API and implementation
11 *******************************************************************************/
12
2bdf0193 13package org.eclipse.tracecompass.tmf.tests.stubs.analysis;
8a6ff07f 14
baa96b1d 15import org.eclipse.jdt.annotation.NonNullByDefault;
2bdf0193
AM
16import org.eclipse.tracecompass.tmf.core.statesystem.ITmfStateProvider;
17import org.eclipse.tracecompass.tmf.core.statesystem.TmfStateSystemAnalysisModule;
8a6ff07f
GB
18
19/**
20 * Test State System module
21 *
22 * @author Geneviève Bastien
23 */
baa96b1d 24@NonNullByDefault
8a6ff07f
GB
25public class TestStateSystemModule extends TmfStateSystemAnalysisModule {
26
27 @Override
baa96b1d 28 protected ITmfStateProvider createStateProvider() {
8a6ff07f
GB
29 return new TestStateSystemProvider(getTrace());
30 }
31
32 @Override
33 protected StateSystemBackendType getBackendType() {
34 return StateSystemBackendType.INMEM;
35 }
36
37}
This page took 0.04618 seconds and 5 git commands to generate.