/** * * * * $Id$ */ package fr.femtost.disc.eclipse.vhdlamsmetamodel.vhdlams; /** * * A representation of the model object 'Else If Statement'. * * *

* The following features are supported: *

*

* * @see fr.femtost.disc.eclipse.vhdlamsmetamodel.vhdlams.VhdlamsPackage#getElseIfStatement() * @model * @generated */ public interface ElseIfStatement extends SequentialStatement { /** * Returns the value of the 'If Statement' reference. * *

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

* * @return the value of the 'If Statement' reference. * @see #setIfStatement(IfThenStatement) * @see fr.femtost.disc.eclipse.vhdlamsmetamodel.vhdlams.VhdlamsPackage#getElseIfStatement_IfStatement() * @model * @generated */ IfThenStatement getIfStatement(); /** * Sets the value of the '{@link fr.femtost.disc.eclipse.vhdlamsmetamodel.vhdlams.ElseIfStatement#getIfStatement If Statement}' reference. * * * @param value the new value of the 'If Statement' reference. * @see #getIfStatement() * @generated */ void setIfStatement(IfThenStatement value); /** * Returns the value of the 'Boolean Expression' attribute. * *

* If the meaning of the 'Boolean Expression' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Boolean Expression' attribute. * @see #setBooleanExpression(String) * @see fr.femtost.disc.eclipse.vhdlamsmetamodel.vhdlams.VhdlamsPackage#getElseIfStatement_BooleanExpression() * @model * @generated */ String getBooleanExpression(); /** * Sets the value of the '{@link fr.femtost.disc.eclipse.vhdlamsmetamodel.vhdlams.ElseIfStatement#getBooleanExpression Boolean Expression}' attribute. * * * @param value the new value of the 'Boolean Expression' attribute. * @see #getBooleanExpression() * @generated */ void setBooleanExpression(String value); } // ElseIfStatement