blob: 241d33add29ccb11e039ef09c8cf69315b78d7f6 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013, 2014 É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
*
* Contributors:
* Geneviève Bastien - Initial API and implementation
*******************************************************************************/
package org.eclipse.tracecompass.tmf.ui.tests.stubs.analysis;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.tracecompass.tmf.core.analysis.TmfAbstractAnalysisModule;
import org.eclipse.tracecompass.tmf.core.trace.ITmfTrace;
/**
* Stub for an analysis module with outputs
*/
public class TestAnalysisUi extends TmfAbstractAnalysisModule {
/** ID of the view opened by this analysis module */
public static final String VIEW_ID = "org.eclipse.linuxtools.tmf.ui.tests.testAnalysisView";
private String fTraceName;
/**
* Constructor
*/
public TestAnalysisUi() {
super();
}
@Override
protected boolean executeAnalysis(final IProgressMonitor monitor) {
return false;
}
@Override
protected void canceling() {
}
@Override
public ITmfTrace getTrace() {
return super.getTrace();
}
/**
* Returns the name of the trace that should be set
*
* @return Name of the trace
*/
public String getTraceName() {
return fTraceName;
}
}