/** */ package org.example.xbase.entities.entities; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; import org.eclipse.xtext.xtype.XImportSection; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Model</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.example.xbase.entities.entities.Model#getImportSection <em>Import Section</em>}</li> * <li>{@link org.example.xbase.entities.entities.Model#getEntities <em>Entities</em>}</li> * </ul> * </p> * * @see org.example.xbase.entities.entities.EntitiesPackage#getModel() * @model * @generated */ public interface Model extends EObject { /** * Returns the value of the '<em><b>Import Section</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Import Section</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>Import Section</em>' containment reference. * @see #setImportSection(XImportSection) * @see org.example.xbase.entities.entities.EntitiesPackage#getModel_ImportSection() * @model containment="true" * @generated */ XImportSection getImportSection(); /** * Sets the value of the '{@link org.example.xbase.entities.entities.Model#getImportSection <em>Import Section</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Import Section</em>' containment reference. * @see #getImportSection() * @generated */ void setImportSection(XImportSection value); /** * Returns the value of the '<em><b>Entities</b></em>' containment reference list. * The list contents are of type {@link org.example.xbase.entities.entities.Entity}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Entities</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>Entities</em>' containment reference list. * @see org.example.xbase.entities.entities.EntitiesPackage#getModel_Entities() * @model containment="true" * @generated */ EList<Entity> getEntities(); } // Model