/** */ package rba.core; /** * * A representation of the model object 'Complex Expression'. * * * * * * *

* The following features are supported: *

* * * @see rba.core.RBACorePackage#getComplexExpression() * @model * @generated */ public interface ComplexExpression extends Expression, SugarExpressionBase { /** * Returns the value of the 'Other Expression' containment reference. * * * * * * @return the value of the 'Other Expression' containment reference. * @see #setOtherExpression(Expression) * @see rba.core.RBACorePackage#getComplexExpression_OtherExpression() * @model containment="true" required="true" * @generated */ Expression getOtherExpression(); /** * Sets the value of the '{@link rba.core.ComplexExpression#getOtherExpression Other Expression}' containment reference. * * * @param value the new value of the 'Other Expression' containment reference. * @see #getOtherExpression() * @generated */ void setOtherExpression(Expression value); /** * * * * @Override * * @model kind="operation" * annotation="http://www.eclipse.org/emf/2002/GenModel body='return otherExpression != null ? otherExpression.getExpressionText() : \"[Invalid_Expression]\";'" * @generated */ String getExpressionText(); /** * * * * @Override * * @model kind="operation" * annotation="http://www.eclipse.org/emf/2002/GenModel body='if (otherExpression != null) {\r\n return otherExpression.getType();\r\n} else {\r\n return ExpressionType.VALUE;\r\n}'" * @generated */ ExpressionType getUnderlyingType(); /** * * * * @Override * * @model kind="operation" * annotation="http://www.eclipse.org/emf/2002/GenModel body='return getUnderlyingType();'" * @generated */ ExpressionType getType(); } // ComplexExpression