/** */ package org.yakindu.base.expressions.expressions; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Element Reference Expression</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * </p> * <ul> * <li>{@link org.yakindu.base.expressions.expressions.ElementReferenceExpression#getReference <em>Reference</em>}</li> * <li>{@link org.yakindu.base.expressions.expressions.ElementReferenceExpression#isOperationCall <em>Operation Call</em>}</li> * <li>{@link org.yakindu.base.expressions.expressions.ElementReferenceExpression#getArraySelector <em>Array Selector</em>}</li> * <li>{@link org.yakindu.base.expressions.expressions.ElementReferenceExpression#isArrayAccess <em>Array Access</em>}</li> * </ul> * * @see org.yakindu.base.expressions.expressions.ExpressionsPackage#getElementReferenceExpression() * @model * @generated */ public interface ElementReferenceExpression extends ArgumentExpression { /** * Returns the value of the '<em><b>Reference</b></em>' reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Reference</em>' reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Reference</em>' reference. * @see #setReference(EObject) * @see org.yakindu.base.expressions.expressions.ExpressionsPackage#getElementReferenceExpression_Reference() * @model * @generated */ EObject getReference(); /** * Sets the value of the '{@link org.yakindu.base.expressions.expressions.ElementReferenceExpression#getReference <em>Reference</em>}' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Reference</em>' reference. * @see #getReference() * @generated */ void setReference(EObject value); /** * Returns the value of the '<em><b>Operation Call</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Operation Call</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Operation Call</em>' attribute. * @see #setOperationCall(boolean) * @see org.yakindu.base.expressions.expressions.ExpressionsPackage#getElementReferenceExpression_OperationCall() * @model * @generated */ boolean isOperationCall(); /** * Sets the value of the '{@link org.yakindu.base.expressions.expressions.ElementReferenceExpression#isOperationCall <em>Operation Call</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Operation Call</em>' attribute. * @see #isOperationCall() * @generated */ void setOperationCall(boolean value); /** * Returns the value of the '<em><b>Array Selector</b></em>' containment reference list. * The list contents are of type {@link org.yakindu.base.expressions.expressions.Expression}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Array Selector</em>' containment reference list isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Array Selector</em>' containment reference list. * @see org.yakindu.base.expressions.expressions.ExpressionsPackage#getElementReferenceExpression_ArraySelector() * @model containment="true" * @generated */ EList<Expression> getArraySelector(); /** * Returns the value of the '<em><b>Array Access</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Array Access</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Array Access</em>' attribute. * @see #setArrayAccess(boolean) * @see org.yakindu.base.expressions.expressions.ExpressionsPackage#getElementReferenceExpression_ArrayAccess() * @model * @generated */ boolean isArrayAccess(); /** * Sets the value of the '{@link org.yakindu.base.expressions.expressions.ElementReferenceExpression#isArrayAccess <em>Array Access</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Array Access</em>' attribute. * @see #isArrayAccess() * @generated */ void setArrayAccess(boolean value); } // ElementReferenceExpression