/**
* <copyright>
* </copyright>
*
* $Id$
*/
package fr.inria.atlanmod.collaboro.notation;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Label</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link fr.inria.atlanmod.collaboro.notation.Label#getText <em>Text</em>}</li>
* </ul>
* </p>
*
* @see fr.inria.atlanmod.collaboro.notation.NotationPackage#getLabel()
* @model
* @generated
*/
public interface Label extends GraphicalElement {
/**
* Returns the value of the '<em><b>Text</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Text</em>' containment reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Text</em>' containment reference.
* @see #setText(TextualElement)
* @see fr.inria.atlanmod.collaboro.notation.NotationPackage#getLabel_Text()
* @model containment="true" required="true"
* @generated
*/
TextualElement getText();
/**
* Sets the value of the '{@link fr.inria.atlanmod.collaboro.notation.Label#getText <em>Text</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Text</em>' containment reference.
* @see #getText()
* @generated
*/
void setText(TextualElement value);
} // Label