/** * <copyright> * </copyright> * * $Id$ */ package org.csu.idl.idlmm; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Translation Unit</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.csu.idl.idlmm.TranslationUnit#getContains <em>Contains</em>}</li> * <li>{@link org.csu.idl.idlmm.TranslationUnit#getIdentifier <em>Identifier</em>}</li> * <li>{@link org.csu.idl.idlmm.TranslationUnit#getIncludes <em>Includes</em>}</li> * </ul> * </p> * * @see org.csu.idl.idlmm.IdlmmPackage#getTranslationUnit() * @model * @generated */ public interface TranslationUnit extends EObject { /** * Returns the value of the '<em><b>Contains</b></em>' containment reference list. * The list contents are of type {@link org.csu.idl.idlmm.Contained}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Contains</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>Contains</em>' containment reference list. * @see org.csu.idl.idlmm.IdlmmPackage#getTranslationUnit_Contains() * @model containment="true" * @generated */ EList<Contained> getContains(); /** * Returns the value of the '<em><b>Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Identifier</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Identifier</em>' attribute. * @see #setIdentifier(String) * @see org.csu.idl.idlmm.IdlmmPackage#getTranslationUnit_Identifier() * @model * @generated */ String getIdentifier(); /** * Sets the value of the '{@link org.csu.idl.idlmm.TranslationUnit#getIdentifier <em>Identifier</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Identifier</em>' attribute. * @see #getIdentifier() * @generated */ void setIdentifier(String value); /** * Returns the value of the '<em><b>Includes</b></em>' containment reference list. * The list contents are of type {@link org.csu.idl.idlmm.Include}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Includes</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>Includes</em>' containment reference list. * @see org.csu.idl.idlmm.IdlmmPackage#getTranslationUnit_Includes() * @model containment="true" * @generated */ EList<Include> getIncludes(); } // TranslationUnit