/** * * * */ package org.modelica.xtext.modelicaBase; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Comment'. * * *

* The following features are supported: *

*

* * @see org.modelica.xtext.modelicaBase.ModelicaBasePackage#getComment() * @model * @generated */ public interface Comment extends EObject { /** * Returns the value of the 'String' attribute. * *

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

* * @return the value of the 'String' attribute. * @see #setString(String) * @see org.modelica.xtext.modelicaBase.ModelicaBasePackage#getComment_String() * @model * @generated */ String getString(); /** * Sets the value of the '{@link org.modelica.xtext.modelicaBase.Comment#getString String}' attribute. * * * @param value the new value of the 'String' attribute. * @see #getString() * @generated */ void setString(String value); /** * Returns the value of the 'Annotation' containment reference. * *

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

* * @return the value of the 'Annotation' containment reference. * @see #setAnnotation(Annotation) * @see org.modelica.xtext.modelicaBase.ModelicaBasePackage#getComment_Annotation() * @model containment="true" * @generated */ Annotation getAnnotation(); /** * Sets the value of the '{@link org.modelica.xtext.modelicaBase.Comment#getAnnotation Annotation}' containment reference. * * * @param value the new value of the 'Annotation' containment reference. * @see #getAnnotation() * @generated */ void setAnnotation(Annotation value); } // Comment