tmf: add abstract bar chart viewer on top using swt chart
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core / src / org / eclipse / linuxtools / tmf / core / statesystem / ITmfStateSystemAnalysisModule.java
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
13 package org.eclipse.linuxtools.tmf.core.statesystem;
14
15 import java.util.Map;
16
17 /**
18 * Interface for analysis modules providing state systems
19 *
20 * @author Geneviève Bastien
21 * @since 3.0
22 */
23 public interface ITmfStateSystemAnalysisModule {
24
25 /**
26 * Return a map of all state systems this analysis is owner of. The key is
27 * the ID of the state system and the value is the state system itself.
28 *
29 * @return A map of state sytems
30 */
31 Map<String, ITmfStateSystem> getStateSystems();
32
33 }
This page took 0.031056 seconds and 5 git commands to generate.