/** */ package edu.ufc.femtost.disc.sysml4modelica.modelicametamodel.modelica; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Comment</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link edu.ufc.femtost.disc.sysml4modelica.modelicametamodel.modelica.Comment#getOwnerModelicaClassDefinition <em>Owner Modelica Class Definition</em>}</li> * <li>{@link edu.ufc.femtost.disc.sysml4modelica.modelicametamodel.modelica.Comment#getBody <em>Body</em>}</li> * </ul> * </p> * * @see edu.ufc.femtost.disc.sysml4modelica.modelicametamodel.modelica.modelicaPackage#getComment() * @model * @generated */ public interface Comment extends EObject { /** * Returns the value of the '<em><b>Owner Modelica Class Definition</b></em>' container reference. * It is bidirectional and its opposite is '{@link edu.ufc.femtost.disc.sysml4modelica.modelicametamodel.modelica.ModelicaClassDefinition#getComments <em>Comments</em>}'. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Owner Modelica Class Definition</em>' container reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Owner Modelica Class Definition</em>' container reference. * @see #setOwnerModelicaClassDefinition(ModelicaClassDefinition) * @see edu.ufc.femtost.disc.sysml4modelica.modelicametamodel.modelica.modelicaPackage#getComment_OwnerModelicaClassDefinition() * @see edu.ufc.femtost.disc.sysml4modelica.modelicametamodel.modelica.ModelicaClassDefinition#getComments * @model opposite="comments" transient="false" * @generated */ ModelicaClassDefinition getOwnerModelicaClassDefinition(); /** * Sets the value of the '{@link edu.ufc.femtost.disc.sysml4modelica.modelicametamodel.modelica.Comment#getOwnerModelicaClassDefinition <em>Owner Modelica Class Definition</em>}' container reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Owner Modelica Class Definition</em>' container reference. * @see #getOwnerModelicaClassDefinition() * @generated */ void setOwnerModelicaClassDefinition(ModelicaClassDefinition value); /** * Returns the value of the '<em><b>Body</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Body</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Body</em>' attribute. * @see #setBody(String) * @see edu.ufc.femtost.disc.sysml4modelica.modelicametamodel.modelica.modelicaPackage#getComment_Body() * @model * @generated */ String getBody(); /** * Sets the value of the '{@link edu.ufc.femtost.disc.sysml4modelica.modelicametamodel.modelica.Comment#getBody <em>Body</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Body</em>' attribute. * @see #getBody() * @generated */ void setBody(String value); } // Comment