blob: 6316ffe1709bce7ff116a76bbf0df16fd794486b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2016 É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
*******************************************************************************/
package org.eclipse.tracecompass.tmf.tests.stubs.analysis;
import org.eclipse.tracecompass.tmf.core.analysis.IAnalysisModule;
import org.eclipse.tracecompass.tmf.core.analysis.ITmfNewAnalysisModuleListener;
/**
* A test listener for newly created modules
*
* @author Geneviève Bastien
*/
public class NewModuleListenerStub implements ITmfNewAnalysisModuleListener {
private static int fNewModuleCount = 0;
@Override
public void moduleCreated(IAnalysisModule module) {
fNewModuleCount++;
}
/**
* Get the count of newly created modules
*
* @return the number of modules that were created
*/
public static int getModuleCount() {
return fNewModuleCount;
}
}