/** * Copyright (c) 2013 United States Government as represented by the Administrator for The National Aeronautics and Space Administration. All Rights Reserved. * */ package net.certware.sacm.SACM.Argumentation; import net.certware.sacm.SACM.ModelElement; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Element</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link net.certware.sacm.SACM.Argumentation.ArgumentationElement#getDescription <em>Description</em>}</li> * <li>{@link net.certware.sacm.SACM.Argumentation.ArgumentationElement#getContent <em>Content</em>}</li> * </ul> * </p> * * @see net.certware.sacm.SACM.Argumentation.ArgumentationPackage#getArgumentationElement() * @model abstract="true" * @generated */ public interface ArgumentationElement extends ModelElement { /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ String copyright = "Copyright (c) 2013 United States Government as represented by the Administrator for The National Aeronautics and Space Administration. All Rights Reserved.\n"; //$NON-NLS-1$ /** * Returns the value of the '<em><b>Description</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Description</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Description</em>' attribute. * @see #setDescription(String) * @see net.certware.sacm.SACM.Argumentation.ArgumentationPackage#getArgumentationElement_Description() * @model dataType="net.certware.sacm.SACM.String" required="true" ordered="false" * @generated */ String getDescription(); /** * Sets the value of the '{@link net.certware.sacm.SACM.Argumentation.ArgumentationElement#getDescription <em>Description</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Description</em>' attribute. * @see #getDescription() * @generated */ void setDescription(String value); /** * Returns the value of the '<em><b>Content</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Content</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Content</em>' attribute. * @see #setContent(String) * @see net.certware.sacm.SACM.Argumentation.ArgumentationPackage#getArgumentationElement_Content() * @model dataType="net.certware.sacm.SACM.String" required="true" ordered="false" * @generated */ String getContent(); /** * Sets the value of the '{@link net.certware.sacm.SACM.Argumentation.ArgumentationElement#getContent <em>Content</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Content</em>' attribute. * @see #getContent() * @generated */ void setContent(String value); } // ArgumentationElement