blob: 7e2ab682ac0621a0c580971b8b73e2c22cb94998 [file] [log] [blame]
/**
* Copyright (c) 2011, 2016 - Loetz GmbH&Co.KG (69115 Heidelberg, Germany)
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Christophe Loetz (Loetz GmbH&Co.KG) - initial implementation
*
* generated from ActionDSL.xcore
*
*
*/
package org.eclipse.osbp.xtext.action;
import org.eclipse.osbp.xtext.functionlibrarydsl.FunctionLibraryParameter;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Action Parameter</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.osbp.xtext.action.ActionParameter#getParameter <em>Parameter</em>}</li>
* </ul>
*
* @see org.eclipse.osbp.xtext.action.ActionDSLPackage#getActionParameter()
* @model
* @generated
*/
public interface ActionParameter extends ActionBase {
/**
* Returns the value of the '<em><b>Parameter</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Parameter</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Parameter</em>' reference.
* @see #setParameter(FunctionLibraryParameter)
* @see org.eclipse.osbp.xtext.action.ActionDSLPackage#getActionParameter_Parameter()
* @model
* @generated
*/
FunctionLibraryParameter getParameter();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.action.ActionParameter#getParameter <em>Parameter</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Parameter</em>' reference.
* @see #getParameter()
* @generated
*/
void setParameter(FunctionLibraryParameter value);
} // ActionParameter