blob: 9e3c4fdf7438330c57465f96eaa7a72949faee78 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2017, 2019 Dortmund University of Applied Sciences and Arts and others.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Dortmund University of Applied Sciences and Arts - initial API and implementation
*******************************************************************************/
package org.eclipse.app4mc.multicore.execution.ui.widget.emtracewidget;
import org.eclipse.app4mc.multicore.execution.logic.executionmodel.ExecutionModel;
public interface IEMTraceWidget {
/**
* Add an execution model to the trace widget. Previous added data will be
* displayed and if the mentioned add methods of the
* <code>ExecutionModel</code> class are used to populate data to the model
* the data added in the future will also be displayed. Therefore the view
* registers itself as an observer on the <code>ExecutionModel</code>
* instance.
*
* @param em
*/
public void addExecutionModel(ExecutionModel em);
public void setFinish();
public boolean getFinish();
}