blob: 825850bbf881c7ee21c23534b5798d97ef722cdb [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>Runnable Parameter</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.app4mc.amalthea.model.RunnableParameter#getContainingRunnable <em>Containing Runnable</em>}</li>
* <li>{@link org.eclipse.app4mc.amalthea.model.RunnableParameter#getDirection <em>Direction</em>}</li>
* <li>{@link org.eclipse.app4mc.amalthea.model.RunnableParameter#getDataType <em>Data Type</em>}</li>
* </ul>
*
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getRunnableParameter()
* @model
* @generated
*/
public interface RunnableParameter extends ReferableBaseObject, IDependsOn {
/**
* Returns the value of the '<em><b>Containing Runnable</b></em>' container reference.
* It is bidirectional and its opposite is '{@link org.eclipse.app4mc.amalthea.model.Runnable#getParameters <em>Parameters</em>}'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Containing Runnable</em>' container reference.
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getRunnableParameter_ContainingRunnable()
* @see org.eclipse.app4mc.amalthea.model.Runnable#getParameters
* @model opposite="parameters" transient="false" changeable="false"
* @generated
*/
org.eclipse.app4mc.amalthea.model.Runnable getContainingRunnable();
/**
* Returns the value of the '<em><b>Direction</b></em>' attribute.
* The literals are from the enumeration {@link org.eclipse.app4mc.amalthea.model.DirectionType}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Direction</em>' attribute.
* @see org.eclipse.app4mc.amalthea.model.DirectionType
* @see #setDirection(DirectionType)
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getRunnableParameter_Direction()
* @model unique="false"
* @generated
*/
DirectionType getDirection();
/**
* Sets the value of the '{@link org.eclipse.app4mc.amalthea.model.RunnableParameter#getDirection <em>Direction</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Direction</em>' attribute.
* @see org.eclipse.app4mc.amalthea.model.DirectionType
* @see #getDirection()
* @generated
*/
void setDirection(DirectionType value);
/**
* Returns the value of the '<em><b>Data Type</b></em>' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Data Type</em>' reference.
* @see #setDataType(TypeDefinition)
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getRunnableParameter_DataType()
* @model
* @generated
*/
TypeDefinition getDataType();
/**
* Sets the value of the '{@link org.eclipse.app4mc.amalthea.model.RunnableParameter#getDataType <em>Data Type</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Data Type</em>' reference.
* @see #getDataType()
* @generated
*/
void setDataType(TypeDefinition value);
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @model kind="operation" unique="false"
* @generated
*/
EList<String> getNamePrefixSegments();
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @model unique="false"
* @generated
*/
String toString();
} // RunnableParameter