blob: 64333e036e866368e6ccce3f7dabb5b0845beea1 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2020 École Polytechnique de Montréal
*
* All rights reserved. This program and the accompanying materials are
* made available under the terms of the Eclipse Public License 2.0 which
* accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*******************************************************************************/
package org.eclipse.tracecompass.examples.core.analysis;
import java.util.Objects;
import org.eclipse.jdt.annotation.NonNull;
import org.eclipse.tracecompass.tmf.core.statesystem.ITmfStateProvider;
import org.eclipse.tracecompass.tmf.core.statesystem.TmfStateSystemAnalysisModule;
/**
* An example of a simple state system analysis module.
*
* This module is also in the developer documentation of Trace Compass. If it is
* modified here, the doc should also be updated.
*
* @author Geneviève Bastien
*/
public class ExampleStateSystemAnalysisModule extends TmfStateSystemAnalysisModule {
/**
* Module ID
*/
public static final String ID = "example.state.system.module"; //$NON-NLS-1$
@Override
protected @NonNull ITmfStateProvider createStateProvider() {
return new ExampleStateProvider(Objects.requireNonNull(getTrace()));
}
}