/** * * * * $Id$ */ package net.opengis.fes20; import javax.xml.namespace.QName; import org.eclipse.emf.ecore.EObject; import org.eclipse.emf.ecore.util.FeatureMap; /** * * A representation of the model object 'Literal Type'. * * *

* The following features are supported: *

*

* * @see net.opengis.fes20.Fes20Package#getLiteralType() * @model extendedMetaData="name='LiteralType' kind='mixed'" * @generated */ public interface LiteralType extends EObject { /** * Returns the value of the 'Mixed' attribute list. * The list contents are of type {@link org.eclipse.emf.ecore.util.FeatureMap.Entry}. * *

* If the meaning of the 'Mixed' attribute list isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Mixed' attribute list. * @see net.opengis.fes20.Fes20Package#getLiteralType_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 'Any' attribute list. * The list contents are of type {@link org.eclipse.emf.ecore.util.FeatureMap.Entry}. * *

* If the meaning of the 'Any' attribute list isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Any' attribute list. * @see net.opengis.fes20.Fes20Package#getLiteralType_Any() * @model dataType="org.eclipse.emf.ecore.EFeatureMapEntry" many="false" transient="true" volatile="true" derived="true" * extendedMetaData="kind='elementWildcard' wildcards='##any' name=':1' processing='strict'" * @generated */ FeatureMap getAny(); /** * Returns the value of the 'Type' attribute. * *

* If the meaning of the 'Type' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Type' attribute. * @see #setType(QName) * @see net.opengis.fes20.Fes20Package#getLiteralType_Type() * @model dataType="org.eclipse.emf.ecore.xml.type.QName" * extendedMetaData="kind='attribute' name='type'" * @generated */ QName getType(); /** * Sets the value of the '{@link net.opengis.fes20.LiteralType#getType Type}' attribute. * * * @param value the new value of the 'Type' attribute. * @see #getType() * @generated */ void setType(QName value); } // LiteralType