blob: 599bd20d494c462bcb595a60d85e16f3e8b1975e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2017 É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.internal.tmf.analysis.xml.core.fsm.model;
/**
* An interface that classes shoud implement if they are responsible for running
* during the analysis, on actual trace events.
*
* TODO: Methods may eventually be added to this interface to help debugging
* and give feedback during analysis execution.
*
* @author Geneviève Bastien
*/
public interface IDataDrivenRuntimeObject {
}