tmf: Move plugins to the Trace Compass namespace
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.core / src / org / eclipse / linuxtools / tmf / core / analysis / IAnalysisModuleSource.java
1 /*******************************************************************************
2 * Copyright (c) 2013, 2014 É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.analysis;
14
15
16 /**
17 * Interface that module sources must implement. A module source provides a list
18 * of analysis modules. For example, one module source would be the plugin's
19 * configuration element through the analysis extension point.
20 *
21 * Typically, for each module source, there would be an
22 * {@link IAnalysisModuleHelper} implementation to create modules from this
23 * source.
24 *
25 * @author Geneviève Bastien
26 * @since 3.0
27 */
28 public interface IAnalysisModuleSource {
29
30 /**
31 * Get the list of modules helpers provided by this source
32 *
33 * @return The analysis module helpers in iterable format
34 */
35 Iterable<IAnalysisModuleHelper> getAnalysisModules();
36
37 }
This page took 0.038995 seconds and 5 git commands to generate.