/** * * * * $Id$ */ package net.opengis.wfs20; import net.opengis.fes20.AbstractQueryExpressionType; import org.eclipse.emf.common.util.EList; /** * * A representation of the model object 'Stored Query Type'. * * *

* The following features are supported: *

*

* * @see net.opengis.wfs20.Wfs20Package#getStoredQueryType() * @model extendedMetaData="name='StoredQueryType' kind='elementOnly'" * @generated */ public interface StoredQueryType extends AbstractQueryExpressionType { /** * Returns the value of the 'Parameter' containment reference list. * The list contents are of type {@link net.opengis.wfs20.ParameterType}. * *

* 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#getStoredQueryType_Parameter() * @model containment="true" * extendedMetaData="kind='element' name='Parameter' namespace='##targetNamespace'" * @generated */ EList getParameter(); /** * 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#getStoredQueryType_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.StoredQueryType#getId Id}' attribute. * * * @param value the new value of the 'Id' attribute. * @see #getId() * @generated */ void setId(String value); } // StoredQueryType