blob: 405e051e118fe696d6ee1e6b3f363d53d4f5db47 [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>Operating System</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.app4mc.amalthea.model.OperatingSystem#getOverhead <em>Overhead</em>}</li>
* <li>{@link org.eclipse.app4mc.amalthea.model.OperatingSystem#getTaskSchedulers <em>Task Schedulers</em>}</li>
* <li>{@link org.eclipse.app4mc.amalthea.model.OperatingSystem#getInterruptControllers <em>Interrupt Controllers</em>}</li>
* <li>{@link org.eclipse.app4mc.amalthea.model.OperatingSystem#getOsDataConsistency <em>Os Data Consistency</em>}</li>
* </ul>
*
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getOperatingSystem()
* @model
* @generated
*/
public interface OperatingSystem extends BaseObject, INamed {
/**
* Returns the value of the '<em><b>Overhead</b></em>' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Overhead</em>' reference.
* @see #setOverhead(OsOverhead)
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getOperatingSystem_Overhead()
* @model
* @generated
*/
OsOverhead getOverhead();
/**
* Sets the value of the '{@link org.eclipse.app4mc.amalthea.model.OperatingSystem#getOverhead <em>Overhead</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Overhead</em>' reference.
* @see #getOverhead()
* @generated
*/
void setOverhead(OsOverhead value);
/**
* Returns the value of the '<em><b>Task Schedulers</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.app4mc.amalthea.model.TaskScheduler}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Task Schedulers</em>' containment reference list.
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getOperatingSystem_TaskSchedulers()
* @model containment="true"
* @generated
*/
EList<TaskScheduler> getTaskSchedulers();
/**
* Returns the value of the '<em><b>Interrupt Controllers</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.app4mc.amalthea.model.InterruptController}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Interrupt Controllers</em>' containment reference list.
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getOperatingSystem_InterruptControllers()
* @model containment="true"
* @generated
*/
EList<InterruptController> getInterruptControllers();
/**
* Returns the value of the '<em><b>Os Data Consistency</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Os Data Consistency</em>' containment reference.
* @see #setOsDataConsistency(OsDataConsistency)
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getOperatingSystem_OsDataConsistency()
* @model containment="true"
* @generated
*/
OsDataConsistency getOsDataConsistency();
/**
* Sets the value of the '{@link org.eclipse.app4mc.amalthea.model.OperatingSystem#getOsDataConsistency <em>Os Data Consistency</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Os Data Consistency</em>' containment reference.
* @see #getOsDataConsistency()
* @generated
*/
void setOsDataConsistency(OsDataConsistency value);
} // OperatingSystem