blob: 0b7de5dfd17a86824892b81ae1ee21c73b6d44e5 [file] [log] [blame]
/**
* Copyright (c) 2018 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
*
* Contributors:
* Arnault Lapitre (CEA LIST) arnault.lapitre@cea.fr
* - Initial API and Implementation
*/
package org.eclipse.efm.ecore.formalml.expression;
import org.eclipse.efm.ecore.formalml.common.NamedElement;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Named Expression</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.efm.ecore.formalml.expression.NamedExpression#getTarget <em>Target</em>}</li>
* <li>{@link org.eclipse.efm.ecore.formalml.expression.NamedExpression#getName <em>Name</em>}</li>
* <li>{@link org.eclipse.efm.ecore.formalml.expression.NamedExpression#getExpression <em>Expression</em>}</li>
* </ul>
*
* @see org.eclipse.efm.ecore.formalml.expression.ExpressionPackage#getNamedExpression()
* @model
* @generated
*/
public interface NamedExpression extends Expression {
/**
* Returns the value of the '<em><b>Target</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Target</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Target</em>' reference.
* @see #setTarget(NamedElement)
* @see org.eclipse.efm.ecore.formalml.expression.ExpressionPackage#getNamedExpression_Target()
* @model
* @generated
*/
NamedElement getTarget();
/**
* Sets the value of the '{@link org.eclipse.efm.ecore.formalml.expression.NamedExpression#getTarget <em>Target</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Target</em>' reference.
* @see #getTarget()
* @generated
*/
void setTarget(NamedElement value);
/**
* Returns the value of the '<em><b>Name</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Name</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Name</em>' attribute.
* @see #setName(String)
* @see org.eclipse.efm.ecore.formalml.expression.ExpressionPackage#getNamedExpression_Name()
* @model
* @generated
*/
String getName();
/**
* Sets the value of the '{@link org.eclipse.efm.ecore.formalml.expression.NamedExpression#getName <em>Name</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Name</em>' attribute.
* @see #getName()
* @generated
*/
void setName(String value);
/**
* Returns the value of the '<em><b>Expression</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Expression</em>' containment reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Expression</em>' containment reference.
* @see #setExpression(Expression)
* @see org.eclipse.efm.ecore.formalml.expression.ExpressionPackage#getNamedExpression_Expression()
* @model containment="true"
* @generated
*/
Expression getExpression();
/**
* Sets the value of the '{@link org.eclipse.efm.ecore.formalml.expression.NamedExpression#getExpression <em>Expression</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Expression</em>' containment reference.
* @see #getExpression()
* @generated
*/
void setExpression(Expression value);
} // NamedExpression