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

* The following features are supported: *

*

* * @see fr.femtost.disc.eclipse.vhdlamsmetamodel.vhdlams.VhdlamsPackage#getStatement() * @model abstract="true" * @generated */ public interface Statement extends Element { /** * Returns the value of the 'Owner' container reference. * It is bidirectional and its opposite is '{@link fr.femtost.disc.eclipse.vhdlamsmetamodel.vhdlams.Component#getStatement Statement}'. * *

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

* * @return the value of the 'Owner' container reference. * @see #setOwner(Component) * @see fr.femtost.disc.eclipse.vhdlamsmetamodel.vhdlams.VhdlamsPackage#getStatement_Owner() * @see fr.femtost.disc.eclipse.vhdlamsmetamodel.vhdlams.Component#getStatement * @model opposite="statement" transient="false" * @generated */ Component getOwner(); /** * Sets the value of the '{@link fr.femtost.disc.eclipse.vhdlamsmetamodel.vhdlams.Statement#getOwner Owner}' container reference. * * * @param value the new value of the 'Owner' container reference. * @see #getOwner() * @generated */ void setOwner(Component value); /** * Returns the value of the 'Body' attribute. * *

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

* * @return the value of the 'Body' attribute. * @see #setBody(String) * @see fr.femtost.disc.eclipse.vhdlamsmetamodel.vhdlams.VhdlamsPackage#getStatement_Body() * @model * @generated */ String getBody(); /** * Sets the value of the '{@link fr.femtost.disc.eclipse.vhdlamsmetamodel.vhdlams.Statement#getBody Body}' attribute. * * * @param value the new value of the 'Body' attribute. * @see #getBody() * @generated */ void setBody(String value); } // Statement