Tmf: Add unit tests for experiment types
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core.tests / stubs / org / eclipse / linuxtools / tmf / tests / stubs / analysis / TestExperimentAnalysis.java
1 /*******************************************************************************
2 * Copyright (c) 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.tests.stubs.analysis;
14
15 import org.eclipse.core.runtime.IProgressMonitor;
16 import org.eclipse.linuxtools.tmf.core.analysis.TmfAbstractAnalysisModule;
17 import org.eclipse.linuxtools.tmf.core.exceptions.TmfAnalysisException;
18
19 /**
20 * Stubs for experiment analysis
21 *
22 * @author Geneviève Bastien
23 */
24 public class TestExperimentAnalysis extends TmfAbstractAnalysisModule {
25
26 @Override
27 protected boolean executeAnalysis(IProgressMonitor monitor) throws TmfAnalysisException {
28 return false;
29 }
30
31 @Override
32 protected void canceling() {
33
34 }
35
36 }
This page took 0.030213 seconds and 5 git commands to generate.