/** */ package at.bestsolution.persistence.emap.eMap; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>EObject Section</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * </p> * <ul> * <li>{@link at.bestsolution.persistence.emap.eMap.EObjectSection#getEntity <em>Entity</em>}</li> * <li>{@link at.bestsolution.persistence.emap.eMap.EObjectSection#getDescriminatedTypes <em>Descriminated Types</em>}</li> * <li>{@link at.bestsolution.persistence.emap.eMap.EObjectSection#getPrefix <em>Prefix</em>}</li> * <li>{@link at.bestsolution.persistence.emap.eMap.EObjectSection#getAttributes <em>Attributes</em>}</li> * </ul> * * @see at.bestsolution.persistence.emap.eMap.EMapPackage#getEObjectSection() * @model * @generated */ public interface EObjectSection extends EObject { /** * Returns the value of the '<em><b>Entity</b></em>' reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Entity</em>' reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Entity</em>' reference. * @see #setEntity(EMappingEntity) * @see at.bestsolution.persistence.emap.eMap.EMapPackage#getEObjectSection_Entity() * @model * @generated */ EMappingEntity getEntity(); /** * Sets the value of the '{@link at.bestsolution.persistence.emap.eMap.EObjectSection#getEntity <em>Entity</em>}' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Entity</em>' reference. * @see #getEntity() * @generated */ void setEntity(EMappingEntity value); /** * Returns the value of the '<em><b>Descriminated Types</b></em>' reference list. * The list contents are of type {@link at.bestsolution.persistence.emap.eMap.EMappingEntity}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Descriminated Types</em>' reference list isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Descriminated Types</em>' reference list. * @see at.bestsolution.persistence.emap.eMap.EMapPackage#getEObjectSection_DescriminatedTypes() * @model * @generated */ EList<EMappingEntity> getDescriminatedTypes(); /** * Returns the value of the '<em><b>Prefix</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Prefix</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Prefix</em>' attribute. * @see #setPrefix(String) * @see at.bestsolution.persistence.emap.eMap.EMapPackage#getEObjectSection_Prefix() * @model * @generated */ String getPrefix(); /** * Sets the value of the '{@link at.bestsolution.persistence.emap.eMap.EObjectSection#getPrefix <em>Prefix</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Prefix</em>' attribute. * @see #getPrefix() * @generated */ void setPrefix(String value); /** * Returns the value of the '<em><b>Attributes</b></em>' containment reference list. * The list contents are of type {@link at.bestsolution.persistence.emap.eMap.EMappingAttribute}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Attributes</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>Attributes</em>' containment reference list. * @see at.bestsolution.persistence.emap.eMap.EMapPackage#getEObjectSection_Attributes() * @model containment="true" * @generated */ EList<EMappingAttribute> getAttributes(); } // EObjectSection