blob: adb004a9bc4ddfeeff2e798f9b7f00472419cb31 [file] [log] [blame]
/**
*/
package org.eclipse.papyrus.bpmn.BPMNProfile;
import org.eclipse.uml2.uml.Comment;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Text Annotation</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.papyrus.bpmn.BPMNProfile.TextAnnotation#getBase_Comment <em>Base Comment</em>}</li>
* <li>{@link org.eclipse.papyrus.bpmn.BPMNProfile.TextAnnotation#getTextFormat <em>Text Format</em>}</li>
* <li>{@link org.eclipse.papyrus.bpmn.BPMNProfile.TextAnnotation#getText <em>Text</em>}</li>
* </ul>
*
* @see org.eclipse.papyrus.bpmn.BPMNProfile.BPMNProfilePackage#getTextAnnotation()
* @model
* @generated
*/
public interface TextAnnotation extends BPMNArtifact {
/**
* Returns the value of the '<em><b>Base Comment</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Base Comment</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Base Comment</em>' reference.
* @see #setBase_Comment(Comment)
* @see org.eclipse.papyrus.bpmn.BPMNProfile.BPMNProfilePackage#getTextAnnotation_Base_Comment()
* @model required="true" ordered="false"
* @generated
*/
Comment getBase_Comment();
/**
* Sets the value of the '{@link org.eclipse.papyrus.bpmn.BPMNProfile.TextAnnotation#getBase_Comment <em>Base Comment</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Base Comment</em>' reference.
* @see #getBase_Comment()
* @generated
*/
void setBase_Comment(Comment value);
/**
* Returns the value of the '<em><b>Text Format</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Text Format</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Text Format</em>' attribute.
* @see #setTextFormat(String)
* @see org.eclipse.papyrus.bpmn.BPMNProfile.BPMNProfilePackage#getTextAnnotation_TextFormat()
* @model dataType="org.eclipse.uml2.types.String" required="true" ordered="false"
* @generated
*/
String getTextFormat();
/**
* Sets the value of the '{@link org.eclipse.papyrus.bpmn.BPMNProfile.TextAnnotation#getTextFormat <em>Text Format</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Text Format</em>' attribute.
* @see #getTextFormat()
* @generated
*/
void setTextFormat(String value);
/**
* Returns the value of the '<em><b>Text</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Text</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Text</em>' attribute.
* @see #setText(String)
* @see org.eclipse.papyrus.bpmn.BPMNProfile.BPMNProfilePackage#getTextAnnotation_Text()
* @model dataType="org.eclipse.uml2.types.String" required="true" ordered="false"
* @generated
*/
String getText();
/**
* Sets the value of the '{@link org.eclipse.papyrus.bpmn.BPMNProfile.TextAnnotation#getText <em>Text</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Text</em>' attribute.
* @see #getText()
* @generated
*/
void setText(String value);
} // TextAnnotation