TMF: Add base class and interface for state system analysis
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core / src / org / eclipse / linuxtools / tmf / core / statesystem / ITmfStateSystemAnalysisModule.java
CommitLineData
8a6ff07f
GB
1/*******************************************************************************
2 * Copyright (c) 2013 É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 * Contributors:
10 * Geneviève Bastien - Initial API and implementation
11 *******************************************************************************/
12
13package org.eclipse.linuxtools.tmf.core.statesystem;
14
15import java.util.Map;
16
17/**
18 * Interface for analysis modules providing state systems
19 *
20 * @author Geneviève Bastien
21 */
22public interface ITmfStateSystemAnalysisModule {
23
24 /**
25 * Return a map of all state systems this analysis is owner of. The key is
26 * the ID of the state system and the value is the state system itself.
27 *
28 * @return A map of state sytems
29 */
30 Map<String, ITmfStateSystem> getStateSystems();
31
32}
This page took 0.026209 seconds and 5 git commands to generate.