blob: 12545d71d548bf904e0fb26b66f2f1c116dccfdf [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>Section</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* A section is a logical structure, which contains labels and abstract run entities.
* It is used to provide an easy mechanism to distribute objects to memory,
* which are belonging together.
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.app4mc.amalthea.model.Section#getAsilLevel <em>Asil Level</em>}</li>
* <li>{@link org.eclipse.app4mc.amalthea.model.Section#getLabels <em>Labels</em>}</li>
* <li>{@link org.eclipse.app4mc.amalthea.model.Section#getRunnables <em>Runnables</em>}</li>
* </ul>
*
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getSection()
* @model
* @generated
*/
public interface Section extends ReferableBaseObject {
/**
* Returns the value of the '<em><b>Asil Level</b></em>' attribute.
* The literals are from the enumeration {@link org.eclipse.app4mc.amalthea.model.ASILType}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* for specifying the ASIL level for the "virtual memory sections"
* <!-- end-model-doc -->
* @return the value of the '<em>Asil Level</em>' attribute.
* @see org.eclipse.app4mc.amalthea.model.ASILType
* @see #setAsilLevel(ASILType)
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getSection_AsilLevel()
* @model unique="false"
* @generated
*/
ASILType getAsilLevel();
/**
* Sets the value of the '{@link org.eclipse.app4mc.amalthea.model.Section#getAsilLevel <em>Asil Level</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Asil Level</em>' attribute.
* @see org.eclipse.app4mc.amalthea.model.ASILType
* @see #getAsilLevel()
* @generated
*/
void setAsilLevel(ASILType value);
/**
* Returns the value of the '<em><b>Labels</b></em>' reference list.
* The list contents are of type {@link org.eclipse.app4mc.amalthea.model.Label}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* <p><b>Returns an <em>immutable</em> list of labels (Label).</b></p>
* <!-- end-model-doc -->
* @return the value of the '<em>Labels</em>' reference list.
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getSection_Labels()
* @model transient="true" changeable="false" volatile="true" derived="true"
* @generated
*/
EList<Label> getLabels();
/**
* Returns the value of the '<em><b>Runnables</b></em>' reference list.
* The list contents are of type {@link org.eclipse.app4mc.amalthea.model.Runnable}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* <p><b>Returns an <em>immutable</em> list of runnables (Runnable).</b></p>
* <!-- end-model-doc -->
* @return the value of the '<em>Runnables</em>' reference list.
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getSection_Runnables()
* @model transient="true" changeable="false" volatile="true" derived="true"
* @generated
*/
EList<org.eclipse.app4mc.amalthea.model.Runnable> getRunnables();
} // Section