/** * * * * $Id$ */ package net.opengis.wfs20; import net.opengis.ows11.MetadataType; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Stored Query Description Type'. * * *

* The following features are supported: *

*

* * @see net.opengis.wfs20.Wfs20Package#getStoredQueryDescriptionType() * @model extendedMetaData="name='StoredQueryDescriptionType' kind='elementOnly'" * @generated */ public interface StoredQueryDescriptionType extends EObject { /** * Returns the value of the 'Title' containment reference list. * The list contents are of type {@link net.opengis.wfs20.TitleType}. * *

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

* * @return the value of the 'Title' containment reference list. * @see net.opengis.wfs20.Wfs20Package#getStoredQueryDescriptionType_Title() * @model containment="true" * extendedMetaData="kind='element' name='Title' namespace='##targetNamespace'" * @generated */ EList getTitle(); /** * Returns the value of the 'Abstract' containment reference list. * The list contents are of type {@link net.opengis.wfs20.AbstractType}. * *

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

* * @return the value of the 'Abstract' containment reference list. * @see net.opengis.wfs20.Wfs20Package#getStoredQueryDescriptionType_Abstract() * @model containment="true" * extendedMetaData="kind='element' name='Abstract' namespace='##targetNamespace'" * @generated */ EList getAbstract(); /** * Returns the value of the 'Metadata' containment reference list. * The list contents are of type {@link net.opengis.ows11.MetadataType}. * *

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

* * @return the value of the 'Metadata' containment reference list. * @see net.opengis.wfs20.Wfs20Package#getStoredQueryDescriptionType_Metadata() * @model containment="true" * extendedMetaData="kind='element' name='Metadata' namespace='http://www.opengis.net/ows/1.1'" * @generated */ EList getMetadata(); /** * Returns the value of the 'Parameter' containment reference list. * The list contents are of type {@link net.opengis.wfs20.ParameterExpressionType}. * *

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

* * @return the value of the 'Parameter' containment reference list. * @see net.opengis.wfs20.Wfs20Package#getStoredQueryDescriptionType_Parameter() * @model containment="true" * extendedMetaData="kind='element' name='Parameter' namespace='##targetNamespace'" * @generated */ EList getParameter(); /** * Returns the value of the 'Query Expression Text' containment reference list. * The list contents are of type {@link net.opengis.wfs20.QueryExpressionTextType}. * *

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

* * @return the value of the 'Query Expression Text' containment reference list. * @see net.opengis.wfs20.Wfs20Package#getStoredQueryDescriptionType_QueryExpressionText() * @model containment="true" required="true" * extendedMetaData="kind='element' name='QueryExpressionText' namespace='##targetNamespace'" * @generated */ EList getQueryExpressionText(); /** * Returns the value of the 'Id' attribute. * *

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

* * @return the value of the 'Id' attribute. * @see #setId(String) * @see net.opengis.wfs20.Wfs20Package#getStoredQueryDescriptionType_Id() * @model dataType="org.eclipse.emf.ecore.xml.type.AnyURI" required="true" * extendedMetaData="kind='attribute' name='id'" * @generated */ String getId(); /** * Sets the value of the '{@link net.opengis.wfs20.StoredQueryDescriptionType#getId Id}' attribute. * * * @param value the new value of the 'Id' attribute. * @see #getId() * @generated */ void setId(String value); } // StoredQueryDescriptionType