/**
*/
package org.xtest.xTest;
import org.eclipse.xtext.xbase.XExpression;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Expression</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.xtest.xTest.XTestExpression#getName <em>Name</em>}</li>
* <li>{@link org.xtest.xTest.XTestExpression#getExpression <em>Expression</em>}</li>
* </ul>
* </p>
*
* @see org.xtest.xTest.XTestPackage#getXTestExpression()
* @model
* @generated
*/
public interface XTestExpression extends XExpression
{
/**
* Returns the value of the '<em><b>Name</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Name</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>Name</em>' containment reference.
* @see #setName(UniqueName)
* @see org.xtest.xTest.XTestPackage#getXTestExpression_Name()
* @model containment="true"
* @generated
*/
UniqueName getName();
/**
* Sets the value of the '{@link org.xtest.xTest.XTestExpression#getName <em>Name</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Name</em>' containment reference.
* @see #getName()
* @generated
*/
void setName(UniqueName 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(XExpression)
* @see org.xtest.xTest.XTestPackage#getXTestExpression_Expression()
* @model containment="true"
* @generated
*/
XExpression getExpression();
/**
* Sets the value of the '{@link org.xtest.xTest.XTestExpression#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(XExpression value);
} // XTestExpression