/** * * * * $Id$ */ package net.opengis.wfs20; import javax.xml.namespace.QName; import net.opengis.ows11.MetadataType; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Element Type'. * * *

* The following features are supported: *

*

* * @see net.opengis.wfs20.Wfs20Package#getElementType() * @model extendedMetaData="name='ElementType' kind='elementOnly'" * @generated */ public interface ElementType extends EObject { /** * Returns the value of the 'Metadata' containment reference. * *

* If the meaning of the 'Metadata' containment reference isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Metadata' containment reference. * @see #setMetadata(MetadataType) * @see net.opengis.wfs20.Wfs20Package#getElementType_Metadata() * @model containment="true" required="true" * extendedMetaData="kind='element' name='Metadata' namespace='http://www.opengis.net/ows/1.1'" * @generated */ MetadataType getMetadata(); /** * Sets the value of the '{@link net.opengis.wfs20.ElementType#getMetadata Metadata}' containment reference. * * * @param value the new value of the 'Metadata' containment reference. * @see #getMetadata() * @generated */ void setMetadata(MetadataType value); /** * Returns the value of the 'Value List' containment reference. * *

* If the meaning of the 'Value List' containment reference isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Value List' containment reference. * @see #setValueList(ValueListType) * @see net.opengis.wfs20.Wfs20Package#getElementType_ValueList() * @model containment="true" required="true" * extendedMetaData="kind='element' name='ValueList' namespace='##targetNamespace'" * @generated */ ValueListType getValueList(); /** * Sets the value of the '{@link net.opengis.wfs20.ElementType#getValueList Value List}' containment reference. * * * @param value the new value of the 'Value List' containment reference. * @see #getValueList() * @generated */ void setValueList(ValueListType value); /** * Returns the value of the 'Name' attribute. * *

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

* * @return the value of the 'Name' attribute. * @see #setName(String) * @see net.opengis.wfs20.Wfs20Package#getElementType_Name() * @model dataType="org.eclipse.emf.ecore.xml.type.String" required="true" * extendedMetaData="kind='attribute' name='name'" * @generated */ String getName(); /** * Sets the value of the '{@link net.opengis.wfs20.ElementType#getName Name}' attribute. * * * @param value the new value of the 'Name' attribute. * @see #getName() * @generated */ void setName(String value); /** * 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.wfs20.Wfs20Package#getElementType_Type() * @model dataType="org.eclipse.emf.ecore.xml.type.QName" required="true" * extendedMetaData="kind='attribute' name='type'" * @generated */ QName getType(); /** * Sets the value of the '{@link net.opengis.wfs20.ElementType#getType Type}' attribute. * * * @param value the new value of the 'Type' attribute. * @see #getType() * @generated */ void setType(QName value); } // ElementType