blob: 88584883e456fb3c1f7cc4ed9d7224fe0fa09c86 [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;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Runnable Allocation</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.app4mc.amalthea.model.RunnableAllocation#getScheduler <em>Scheduler</em>}</li>
* <li>{@link org.eclipse.app4mc.amalthea.model.RunnableAllocation#getEntity <em>Entity</em>}</li>
* </ul>
*
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getRunnableAllocation()
* @model
* @generated
*/
public interface RunnableAllocation extends BaseObject {
/**
* Returns the value of the '<em><b>Scheduler</b></em>' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Scheduler</em>' reference.
* @see #setScheduler(Scheduler)
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getRunnableAllocation_Scheduler()
* @model required="true"
* @generated
*/
Scheduler getScheduler();
/**
* Sets the value of the '{@link org.eclipse.app4mc.amalthea.model.RunnableAllocation#getScheduler <em>Scheduler</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Scheduler</em>' reference.
* @see #getScheduler()
* @generated
*/
void setScheduler(Scheduler value);
/**
* Returns the value of the '<em><b>Entity</b></em>' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Entity</em>' reference.
* @see #setEntity(org.eclipse.app4mc.amalthea.model.Runnable)
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getRunnableAllocation_Entity()
* @model required="true"
* @generated
*/
org.eclipse.app4mc.amalthea.model.Runnable getEntity();
/**
* Sets the value of the '{@link org.eclipse.app4mc.amalthea.model.RunnableAllocation#getEntity <em>Entity</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Entity</em>' reference.
* @see #getEntity()
* @generated
*/
void setEntity(org.eclipse.app4mc.amalthea.model.Runnable value);
} // RunnableAllocation