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

* The following features are supported: *

*

* * @see fr.femtost.disc.eclipse.vhdlamsmetamodel.vhdlams.VhdlamsPackage#getArchitecture() * @model * @generated */ public interface Architecture extends Component { /** * Returns the value of the 'Entity' reference. * It is bidirectional and its opposite is '{@link fr.femtost.disc.eclipse.vhdlamsmetamodel.vhdlams.Entity#getArchitecture Architecture}'. * *

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

* * @return the value of the 'Entity' reference. * @see #setEntity(Entity) * @see fr.femtost.disc.eclipse.vhdlamsmetamodel.vhdlams.VhdlamsPackage#getArchitecture_Entity() * @see fr.femtost.disc.eclipse.vhdlamsmetamodel.vhdlams.Entity#getArchitecture * @model opposite="architecture" required="true" * @generated */ Entity getEntity(); /** * Sets the value of the '{@link fr.femtost.disc.eclipse.vhdlamsmetamodel.vhdlams.Architecture#getEntity Entity}' reference. * * * @param value the new value of the 'Entity' reference. * @see #getEntity() * @generated */ void setEntity(Entity value); } // Architecture