/** */ package rba.core; /** * * A representation of the model object 'Let Statement'. * * *

* The following features are supported: *

* * * @see rba.core.RBACorePackage#getLetStatement() * @model * @generated */ public interface LetStatement extends ModelElement { /** * Returns the value of the 'Variable' containment reference. * *

* If the meaning of the 'Variable' containment reference isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Variable' containment reference. * @see #setVariable(Variable) * @see rba.core.RBACorePackage#getLetStatement_Variable() * @model containment="true" required="true" * @generated */ Variable getVariable(); /** * Sets the value of the '{@link rba.core.LetStatement#getVariable Variable}' containment reference. * * * @param value the new value of the 'Variable' containment reference. * @see #getVariable() * @generated */ void setVariable(Variable value); /** * Returns the value of the 'Body' containment reference. * *

* If the meaning of the 'Body' containment reference isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Body' containment reference. * @see #setBody(Expression) * @see rba.core.RBACorePackage#getLetStatement_Body() * @model containment="true" required="true" * @generated */ Expression getBody(); /** * Sets the value of the '{@link rba.core.LetStatement#getBody Body}' containment reference. * * * @param value the new value of the 'Body' containment reference. * @see #getBody() * @generated */ void setBody(Expression value); /** * * * @model required="true" * annotation="http://www.eclipse.org/emf/2002/GenModel body='StringBuilder ret = new StringBuilder();\r\nret.append(\"let \"); //$NON-NLS-1$\r\nret.append(getVariable().getName());\r\nret.append(\"= \"); //$NON-NLS-1$\r\nret.append(getBody().getExpressionText());\r\nreturn ret.toString();'" * @generated */ String toString(); } // LetStatement