blob: 8813af1a5e9418b9bc76d11985d569f2d4dcfc2b [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>Scheduler</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* Scheduler
* <ul>
* <li>definition: determines algorithm for scheduling and its required parameters</li>
* <li>schedulingParameters: current values for global scheduling parameters</li>
* <li>computation items: steps to perform the scheduling algorithm</li>
* </ul>
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.app4mc.amalthea.model.Scheduler#getDefinition <em>Definition</em>}</li>
* <li>{@link org.eclipse.app4mc.amalthea.model.Scheduler#getComputationItems <em>Computation Items</em>}</li>
* <li>{@link org.eclipse.app4mc.amalthea.model.Scheduler#getSchedulerAllocations <em>Scheduler Allocations</em>}</li>
* <li>{@link org.eclipse.app4mc.amalthea.model.Scheduler#getRunnableAllocations <em>Runnable Allocations</em>}</li>
* </ul>
*
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getScheduler()
* @model abstract="true"
* @generated
*/
public interface Scheduler extends ReferableBaseObject, ISchedulingParameterContainer {
/**
* Returns the value of the '<em><b>Definition</b></em>' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Definition</em>' reference.
* @see #setDefinition(SchedulerDefinition)
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getScheduler_Definition()
* @model
* @generated
*/
SchedulerDefinition getDefinition();
/**
* Sets the value of the '{@link org.eclipse.app4mc.amalthea.model.Scheduler#getDefinition <em>Definition</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Definition</em>' reference.
* @see #getDefinition()
* @generated
*/
void setDefinition(SchedulerDefinition value);
/**
* Returns the value of the '<em><b>Computation Items</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.app4mc.amalthea.model.ComputationItem}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Computation Items</em>' containment reference list.
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getScheduler_ComputationItems()
* @model containment="true"
* @generated
*/
EList<ComputationItem> getComputationItems();
/**
* Returns the value of the '<em><b>Scheduler Allocations</b></em>' reference list.
* The list contents are of type {@link org.eclipse.app4mc.amalthea.model.SchedulerAllocation}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* <p><b>Returns an <em>immutable</em> list of scheduler allocations (SchedulerAllocation).</b></p>
* <!-- end-model-doc -->
* @return the value of the '<em>Scheduler Allocations</em>' reference list.
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getScheduler_SchedulerAllocations()
* @model transient="true" changeable="false" volatile="true" derived="true"
* @generated
*/
EList<SchedulerAllocation> getSchedulerAllocations();
/**
* Returns the value of the '<em><b>Runnable Allocations</b></em>' reference list.
* The list contents are of type {@link org.eclipse.app4mc.amalthea.model.RunnableAllocation}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* <p><b>Returns an <em>immutable</em> list of runnable allocations (RunnableAllocation).</b></p>
* <!-- end-model-doc -->
* @return the value of the '<em>Runnable Allocations</em>' reference list.
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getScheduler_RunnableAllocations()
* @model transient="true" changeable="false" volatile="true" derived="true"
* @generated
*/
EList<RunnableAllocation> getRunnableAllocations();
} // Scheduler