/** */ package org.w3.xlink; import org.eclipse.emf.common.util.EMap; import org.eclipse.emf.ecore.EObject; import org.eclipse.emf.ecore.util.FeatureMap; /** * <!-- begin-user-doc --> A representation of the model object '<em><b>Document Root</b></em>'. <!-- end-user-doc --> * <p> * The following features are supported: * </p> * <ul> * <li>{@link org.w3.xlink.DocumentRoot#getMixed <em>Mixed</em>}</li> * <li>{@link org.w3.xlink.DocumentRoot#getXMLNSPrefixMap <em>XMLNS Prefix Map</em>}</li> * <li>{@link org.w3.xlink.DocumentRoot#getXSISchemaLocation <em>XSI Schema Location</em>}</li> * <li>{@link org.w3.xlink.DocumentRoot#getHref <em>Href</em>}</li> * <li>{@link org.w3.xlink.DocumentRoot#getType <em>Type</em>}</li> * </ul> * * @see org.w3.xlink.XlinkPackage#getDocumentRoot() * @model extendedMetaData="name='' kind='mixed'" * @generated */ public interface DocumentRoot extends EObject { /** * Returns the value of the '<em><b>Mixed</b></em>' attribute list. The list contents are of type * {@link org.eclipse.emf.ecore.util.FeatureMap.Entry}. <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Mixed</em>' attribute list isn't clear, there really should be more of a description * here... * </p> * <!-- end-user-doc --> * * @return the value of the '<em>Mixed</em>' attribute list. * @see org.w3.xlink.XlinkPackage#getDocumentRoot_Mixed() * @model unique="false" dataType="org.eclipse.emf.ecore.EFeatureMapEntry" many="true" extendedMetaData= * "kind='elementWildcard' name=':mixed'" * @generated */ FeatureMap getMixed(); /** * Returns the value of the '<em><b>XMLNS Prefix Map</b></em>' map. The key is of type {@link java.lang.String}, and * the value is of type {@link java.lang.String}, <!-- begin-user-doc --> * <p> * If the meaning of the '<em>XMLNS Prefix Map</em>' map isn't clear, there really should be more of a description * here... * </p> * <!-- end-user-doc --> * * @return the value of the '<em>XMLNS Prefix Map</em>' map. * @see org.w3.xlink.XlinkPackage#getDocumentRoot_XMLNSPrefixMap() * @model mapType= * "org.eclipse.emf.ecore.EStringToStringMapEntry<org.eclipse.emf.ecore.EString, org.eclipse.emf.ecore.EString>" * transient="true" extendedMetaData="kind='attribute' name='xmlns:prefix'" * @generated */ EMap<String, String> getXMLNSPrefixMap(); /** * Returns the value of the '<em><b>XSI Schema Location</b></em>' map. The key is of type {@link java.lang.String}, * and the value is of type {@link java.lang.String}, <!-- begin-user-doc --> * <p> * If the meaning of the '<em>XSI Schema Location</em>' map isn't clear, there really should be more of a * description here... * </p> * <!-- end-user-doc --> * * @return the value of the '<em>XSI Schema Location</em>' map. * @see org.w3.xlink.XlinkPackage#getDocumentRoot_XSISchemaLocation() * @model mapType= * "org.eclipse.emf.ecore.EStringToStringMapEntry<org.eclipse.emf.ecore.EString, org.eclipse.emf.ecore.EString>" * transient="true" extendedMetaData="kind='attribute' name='xsi:schemaLocation'" * @generated */ EMap<String, String> getXSISchemaLocation(); /** * Returns the value of the '<em><b>Href</b></em>' attribute. <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Href</em>' attribute isn't clear, there really should be more of a description here... * </p> * <!-- end-user-doc --> * * @return the value of the '<em>Href</em>' attribute. * @see #setHref(String) * @see org.w3.xlink.XlinkPackage#getDocumentRoot_Href() * @model dataType="org.eclipse.emf.ecore.xml.type.AnyURI" extendedMetaData= * "kind='attribute' name='href' namespace='##targetNamespace'" * @generated */ String getHref(); /** * Sets the value of the '{@link org.w3.xlink.DocumentRoot#getHref <em>Href</em>}' attribute. <!-- begin-user-doc * --> <!-- end-user-doc --> * * @param value the new value of the '<em>Href</em>' attribute. * @see #getHref() * @generated */ void setHref(String value); /** * Returns the value of the '<em><b>Type</b></em>' attribute. <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Type</em>' attribute isn't clear, there really should be more of a description here... * </p> * <!-- end-user-doc --> * * @return the value of the '<em>Type</em>' attribute. * @see #setType(String) * @see org.w3.xlink.XlinkPackage#getDocumentRoot_Type() * @model dataType="org.eclipse.emf.ecore.xml.type.String" extendedMetaData= * "kind='attribute' name='type' namespace='##targetNamespace'" * @generated */ String getType(); /** * Sets the value of the '{@link org.w3.xlink.DocumentRoot#getType <em>Type</em>}' attribute. <!-- begin-user-doc * --> <!-- end-user-doc --> * * @param value the new value of the '<em>Type</em>' attribute. * @see #getType() * @generated */ void setType(String value); } // DocumentRoot