blob: e70c6ef1ca701bd49ef792c211bddad10e8d02cf [file] [log] [blame]
/**
* Copyright (c) 2020 CEA LIST.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html\n\nContributors:
* Arnault Lapitre (CEA LIST) arnault.lapitre@cea.fr
* - Initial API and Implementation
*/
package org.eclipse.efm.ecore.formalml.infrastructure;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Parameter</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.efm.ecore.formalml.infrastructure.Parameter#getDirection <em>Direction</em>}</li>
* </ul>
*
* @see org.eclipse.efm.ecore.formalml.infrastructure.InfrastructurePackage#getParameter()
* @model
* @generated
*/
public interface Parameter extends PropertyDefinition {
/**
* Returns the value of the '<em><b>Direction</b></em>' attribute.
* The default value is <code>"in"</code>.
* The literals are from the enumeration {@link org.eclipse.efm.ecore.formalml.infrastructure.ParameterDirectionKind}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Direction</em>' attribute.
* @see org.eclipse.efm.ecore.formalml.infrastructure.ParameterDirectionKind
* @see #setDirection(ParameterDirectionKind)
* @see org.eclipse.efm.ecore.formalml.infrastructure.InfrastructurePackage#getParameter_Direction()
* @model default="in" required="true"
* @generated
*/
ParameterDirectionKind getDirection();
/**
* Sets the value of the '{@link org.eclipse.efm.ecore.formalml.infrastructure.Parameter#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.efm.ecore.formalml.infrastructure.ParameterDirectionKind
* @see #getDirection()
* @generated
*/
void setDirection(ParameterDirectionKind value);
} // Parameter