blob: 27b56b898d432d0f004801c3328ed76f9a595429 [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>OS Model</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.app4mc.amalthea.model.OSModel#getSemaphores <em>Semaphores</em>}</li>
* <li>{@link org.eclipse.app4mc.amalthea.model.OSModel#getOperatingSystems <em>Operating Systems</em>}</li>
* <li>{@link org.eclipse.app4mc.amalthea.model.OSModel#getOsOverheads <em>Os Overheads</em>}</li>
* <li>{@link org.eclipse.app4mc.amalthea.model.OSModel#getSchedulerDefinitions <em>Scheduler Definitions</em>}</li>
* <li>{@link org.eclipse.app4mc.amalthea.model.OSModel#getSchedulingParameterDefinitions <em>Scheduling Parameter Definitions</em>}</li>
* </ul>
*
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getOSModel()
* @model
* @generated
*/
public interface OSModel extends BaseObject {
/**
* Returns the value of the '<em><b>Semaphores</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.app4mc.amalthea.model.Semaphore}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Semaphores</em>' containment reference list.
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getOSModel_Semaphores()
* @model containment="true"
* @generated
*/
EList<Semaphore> getSemaphores();
/**
* Returns the value of the '<em><b>Operating Systems</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.app4mc.amalthea.model.OperatingSystem}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Operating Systems</em>' containment reference list.
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getOSModel_OperatingSystems()
* @model containment="true"
* @generated
*/
EList<OperatingSystem> getOperatingSystems();
/**
* Returns the value of the '<em><b>Os Overheads</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.app4mc.amalthea.model.OsOverhead}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Os Overheads</em>' containment reference list.
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getOSModel_OsOverheads()
* @model containment="true"
* @generated
*/
EList<OsOverhead> getOsOverheads();
/**
* Returns the value of the '<em><b>Scheduler Definitions</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.app4mc.amalthea.model.SchedulerDefinition}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Scheduler Definitions</em>' containment reference list.
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getOSModel_SchedulerDefinitions()
* @model containment="true"
* @generated
*/
EList<SchedulerDefinition> getSchedulerDefinitions();
/**
* Returns the value of the '<em><b>Scheduling Parameter Definitions</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.app4mc.amalthea.model.SchedulingParameterDefinition}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Scheduling Parameter Definitions</em>' containment reference list.
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getOSModel_SchedulingParameterDefinitions()
* @model containment="true"
* @generated
*/
EList<SchedulingParameterDefinition> getSchedulingParameterDefinitions();
} // OSModel