/** * <copyright> * </copyright> * * $Id$ */ package net.opengis.fes20; import javax.xml.namespace.QName; import org.eclipse.emf.ecore.EObject; import org.eclipse.emf.ecore.util.FeatureMap; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Literal Type</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link net.opengis.fes20.LiteralType#getMixed <em>Mixed</em>}</li> * <li>{@link net.opengis.fes20.LiteralType#getAny <em>Any</em>}</li> * <li>{@link net.opengis.fes20.LiteralType#getType <em>Type</em>}</li> * </ul> * </p> * * @see net.opengis.fes20.Fes20Package#getLiteralType() * @model extendedMetaData="name='LiteralType' kind='mixed'" * @generated */ public interface LiteralType 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 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 '<em><b>Any</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>Any</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>Any</em>' 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 '<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(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 <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(QName value); } // LiteralType