/** * <copyright> * </copyright> * * $Id$ */ package SadModel; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Sad Section</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link SadModel.SadSection#getName <em>Name</em>}</li> * <li>{@link SadModel.SadSection#getText <em>Text</em>}</li> * </ul> * </p> * * @see SadModel.SadModelPackage#getSadSection() * @model * @generated */ public interface SadSection extends Artifact { /** * Returns the value of the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Name</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Name</em>' attribute. * @see #setName(String) * @see SadModel.SadModelPackage#getSadSection_Name() * @model * @generated */ String getName(); /** * Sets the value of the '{@link SadModel.SadSection#getName <em>Name</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Name</em>' attribute. * @see #getName() * @generated */ void setName(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 SadModel.SadModelPackage#getSadSection_Text() * @model * @generated */ String getText(); /** * Sets the value of the '{@link SadModel.SadSection#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); } // SadSection