org.openxma.dsl.dom.model.AliasedExpression Maven / Gradle / Ivy
/**
*
*
*
* $Id$
*/
package org.openxma.dsl.dom.model;
/**
*
* A representation of the model object 'Aliased Expression'.
*
*
*
* The following features are supported:
*
* - {@link org.openxma.dsl.dom.model.AliasedExpression#getExpression Expression}
* - {@link org.openxma.dsl.dom.model.AliasedExpression#getName Name}
*
*
*
* @see org.openxma.dsl.dom.DomPackage#getAliasedExpression()
* @model
* @generated
*/
public interface AliasedExpression extends Expression {
/**
* Returns the value of the 'Expression' containment reference.
*
*
* If the meaning of the 'Expression' containment reference isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Expression' containment reference.
* @see #setExpression(Expression)
* @see org.openxma.dsl.dom.DomPackage#getAliasedExpression_Expression()
* @model containment="true"
* @generated
*/
Expression getExpression();
/**
* Sets the value of the '{@link org.openxma.dsl.dom.model.AliasedExpression#getExpression Expression}' containment reference.
*
*
* @param value the new value of the 'Expression' containment reference.
* @see #getExpression()
* @generated
*/
void setExpression(Expression value);
/**
* Returns the value of the 'Name' attribute.
*
*
* If the meaning of the 'Name' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Name' attribute.
* @see #setName(String)
* @see org.openxma.dsl.dom.DomPackage#getAliasedExpression_Name()
* @model
* @generated
*/
String getName();
/**
* Sets the value of the '{@link org.openxma.dsl.dom.model.AliasedExpression#getName Name}' attribute.
*
*
* @param value the new value of the 'Name' attribute.
* @see #getName()
* @generated
*/
void setName(String value);
} // AliasedExpression