/** * 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; import org.eclipse.emf.common.util.EList; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Model Element</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link net.certware.sacm.SACM.ModelElement#getTaggedValue <em>Tagged Value</em>}</li> * <li>{@link net.certware.sacm.SACM.ModelElement#getAnnotation <em>Annotation</em>}</li> * <li>{@link net.certware.sacm.SACM.ModelElement#getId <em>Id</em>}</li> * </ul> * </p> * * @see net.certware.sacm.SACM.SACMPackage#getModelElement() * @model abstract="true" * @generated */ public interface ModelElement extends SACMElement { /** * <!-- 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>Tagged Value</b></em>' containment reference list. * The list contents are of type {@link net.certware.sacm.SACM.TaggedValue}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Tagged Value</em>' containment reference list isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Tagged Value</em>' containment reference list. * @see net.certware.sacm.SACM.SACMPackage#getModelElement_TaggedValue() * @model containment="true" ordered="false" * @generated */ EList<TaggedValue> getTaggedValue(); /** * Returns the value of the '<em><b>Annotation</b></em>' containment reference list. * The list contents are of type {@link net.certware.sacm.SACM.Annotation}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Annotation</em>' containment reference list isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Annotation</em>' containment reference list. * @see net.certware.sacm.SACM.SACMPackage#getModelElement_Annotation() * @model containment="true" ordered="false" * @generated */ EList<Annotation> getAnnotation(); /** * Returns the value of the '<em><b>Id</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Id</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Id</em>' attribute. * @see #setId(String) * @see net.certware.sacm.SACM.SACMPackage#getModelElement_Id() * @model dataType="net.certware.sacm.SACM.String" required="true" ordered="false" * @generated */ String getId(); /** * Sets the value of the '{@link net.certware.sacm.SACM.ModelElement#getId <em>Id</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Id</em>' attribute. * @see #getId() * @generated */ void setId(String value); } // ModelElement