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

* The following features are supported: *

*

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

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

* * @return the value of the 'Element' reference. * @see #setElement(Element) * @see fr.femtost.disc.eclipse.vhdlamsmetamodel.vhdlams.VhdlamsPackage#getComment_Element() * @see fr.femtost.disc.eclipse.vhdlamsmetamodel.vhdlams.Element#getComment * @model opposite="comment" * @generated */ Element getElement(); /** * Sets the value of the '{@link fr.femtost.disc.eclipse.vhdlamsmetamodel.vhdlams.Comment#getElement Element}' reference. * * * @param value the new value of the 'Element' reference. * @see #getElement() * @generated */ void setElement(Element value); /** * Returns the value of the 'Description' attribute. * *

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

* * @return the value of the 'Description' attribute. * @see #setDescription(String) * @see fr.femtost.disc.eclipse.vhdlamsmetamodel.vhdlams.VhdlamsPackage#getComment_Description() * @model * @generated */ String getDescription(); /** * Sets the value of the '{@link fr.femtost.disc.eclipse.vhdlamsmetamodel.vhdlams.Comment#getDescription Description}' attribute. * * * @param value the new value of the 'Description' attribute. * @see #getDescription() * @generated */ void setDescription(String value); } // Comment