blob: 01c6114a3a81782d4578f089179934f72bc2fc46 [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>Task Scheduler</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.app4mc.amalthea.model.TaskScheduler#getParentAssociation <em>Parent Association</em>}</li>
* <li>{@link org.eclipse.app4mc.amalthea.model.TaskScheduler#getChildAssociations <em>Child Associations</em>}</li>
* <li>{@link org.eclipse.app4mc.amalthea.model.TaskScheduler#getTaskAllocations <em>Task Allocations</em>}</li>
* <li>{@link org.eclipse.app4mc.amalthea.model.TaskScheduler#getParentScheduler <em>Parent Scheduler</em>}</li>
* <li>{@link org.eclipse.app4mc.amalthea.model.TaskScheduler#getChildSchedulers <em>Child Schedulers</em>}</li>
* </ul>
*
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getTaskScheduler()
* @model
* @generated
*/
public interface TaskScheduler extends Scheduler {
/**
* Returns the value of the '<em><b>Parent Association</b></em>' containment reference.
* It is bidirectional and its opposite is '{@link org.eclipse.app4mc.amalthea.model.SchedulerAssociation#getChild <em>Child</em>}'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Parent Association</em>' containment reference.
* @see #setParentAssociation(SchedulerAssociation)
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getTaskScheduler_ParentAssociation()
* @see org.eclipse.app4mc.amalthea.model.SchedulerAssociation#getChild
* @model opposite="child" containment="true"
* @generated
*/
SchedulerAssociation getParentAssociation();
/**
* Sets the value of the '{@link org.eclipse.app4mc.amalthea.model.TaskScheduler#getParentAssociation <em>Parent Association</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Parent Association</em>' containment reference.
* @see #getParentAssociation()
* @generated
*/
void setParentAssociation(SchedulerAssociation value);
/**
* Returns the value of the '<em><b>Child Associations</b></em>' reference list.
* The list contents are of type {@link org.eclipse.app4mc.amalthea.model.SchedulerAssociation}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* <p><b>Returns an <em>immutable</em> list of child associations (SchedulerAssociation).</b></p>
* <!-- end-model-doc -->
* @return the value of the '<em>Child Associations</em>' reference list.
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getTaskScheduler_ChildAssociations()
* @model transient="true" changeable="false" volatile="true" derived="true"
* @generated
*/
EList<SchedulerAssociation> getChildAssociations();
/**
* Returns the value of the '<em><b>Task Allocations</b></em>' reference list.
* The list contents are of type {@link org.eclipse.app4mc.amalthea.model.TaskAllocation}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* <p><b>Returns an <em>immutable</em> list of task allocations (TaskAllocation).</b></p>
* <!-- end-model-doc -->
* @return the value of the '<em>Task Allocations</em>' reference list.
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getTaskScheduler_TaskAllocations()
* @model transient="true" changeable="false" volatile="true" derived="true"
* @generated
*/
EList<TaskAllocation> getTaskAllocations();
/**
* Returns the value of the '<em><b>Parent Scheduler</b></em>' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Parent Scheduler</em>' reference.
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getTaskScheduler_ParentScheduler()
* @model transient="true" changeable="false" volatile="true" derived="true"
* @generated
*/
TaskScheduler getParentScheduler();
/**
* Returns the value of the '<em><b>Child Schedulers</b></em>' 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>Child Schedulers</em>' reference list.
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getTaskScheduler_ChildSchedulers()
* @model transient="true" changeable="false" volatile="true" derived="true"
* @generated
*/
EList<TaskScheduler> getChildSchedulers();
} // TaskScheduler