blob: 698371b46d92d6c68307007b5ce2d64599ebb150 [file] [log] [blame]
/**
* *******************************************************************************
* Copyright (c) 2015-2021 Robert Bosch GmbH 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
*
* Generated using Eclipse EMF
*
* *******************************************************************************
*/
package org.eclipse.app4mc.amalthea.model;
import org.eclipse.emf.common.util.EList;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Runnable Call</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* Representation of a runnable call of a run entity.
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.app4mc.amalthea.model.RunnableCall#getRunnable <em>Runnable</em>}</li>
* <li>{@link org.eclipse.app4mc.amalthea.model.RunnableCall#getArguments <em>Arguments</em>}</li>
* <li>{@link org.eclipse.app4mc.amalthea.model.RunnableCall#getContext <em>Context</em>}</li>
* <li>{@link org.eclipse.app4mc.amalthea.model.RunnableCall#getCounter <em>Counter</em>}</li>
* <li>{@link org.eclipse.app4mc.amalthea.model.RunnableCall#getStatistic <em>Statistic</em>}</li>
* </ul>
*
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getRunnableCall()
* @model
* @generated
*/
public interface RunnableCall extends ActivityGraphItem, ITaggable {
/**
* Returns the value of the '<em><b>Runnable</b></em>' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Runnable</em>' reference.
* @see #setRunnable(org.eclipse.app4mc.amalthea.model.Runnable)
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getRunnableCall_Runnable()
* @model required="true"
* @generated
*/
org.eclipse.app4mc.amalthea.model.Runnable getRunnable();
/**
* Sets the value of the '{@link org.eclipse.app4mc.amalthea.model.RunnableCall#getRunnable <em>Runnable</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Runnable</em>' reference.
* @see #getRunnable()
* @generated
*/
void setRunnable(org.eclipse.app4mc.amalthea.model.Runnable value);
/**
* Returns the value of the '<em><b>Arguments</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.app4mc.amalthea.model.CallArgument}.
* It is bidirectional and its opposite is '{@link org.eclipse.app4mc.amalthea.model.CallArgument#getContainingCall <em>Containing Call</em>}'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Arguments</em>' containment reference list.
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getRunnableCall_Arguments()
* @see org.eclipse.app4mc.amalthea.model.CallArgument#getContainingCall
* @model opposite="containingCall" containment="true"
* @generated
*/
EList<CallArgument> getArguments();
/**
* Returns the value of the '<em><b>Context</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.app4mc.amalthea.model.LocalModeLabelAssignment}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Context</em>' containment reference list.
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getRunnableCall_Context()
* @model containment="true"
* @generated
*/
EList<LocalModeLabelAssignment> getContext();
/**
* Returns the value of the '<em><b>Counter</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Counter</em>' containment reference.
* @see #setCounter(Counter)
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getRunnableCall_Counter()
* @model containment="true"
* @generated
*/
Counter getCounter();
/**
* Sets the value of the '{@link org.eclipse.app4mc.amalthea.model.RunnableCall#getCounter <em>Counter</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Counter</em>' containment reference.
* @see #getCounter()
* @generated
*/
void setCounter(Counter value);
/**
* Returns the value of the '<em><b>Statistic</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Statistic</em>' containment reference.
* @see #setStatistic(RunEntityCallStatistic)
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getRunnableCall_Statistic()
* @model containment="true"
* @generated
*/
RunEntityCallStatistic getStatistic();
/**
* Sets the value of the '{@link org.eclipse.app4mc.amalthea.model.RunnableCall#getStatistic <em>Statistic</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Statistic</em>' containment reference.
* @see #getStatistic()
* @generated
*/
void setStatistic(RunEntityCallStatistic value);
} // RunnableCall