/** * * * * $Id$ */ package net.opengis.wfs20; import java.net.URI; import java.util.List; import javax.xml.namespace.QName; import org.eclipse.emf.common.util.EList; import org.opengis.filter.Filter; import org.opengis.filter.sort.SortBy; import net.opengis.fes20.AbstractAdhocQueryExpressionType; /** * * A representation of the model object 'Query Type'. * * *

* The following features are supported: *

*

* * @see net.opengis.wfs20.Wfs20Package#getQueryType() * @model extendedMetaData="name='QueryType' kind='elementOnly'" * @generated */ public interface QueryType extends AbstractAdhocQueryExpressionType { /** * Returns the value of the 'Feature Version' attribute. * *

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

* * @return the value of the 'Feature Version' attribute. * @see #setFeatureVersion(String) * @see net.opengis.wfs20.Wfs20Package#getQueryType_FeatureVersion() * @model dataType="org.eclipse.emf.ecore.xml.type.String" * extendedMetaData="kind='attribute' name='featureVersion'" * @generated */ String getFeatureVersion(); /** * Sets the value of the '{@link net.opengis.wfs20.QueryType#getFeatureVersion Feature Version}' attribute. * * * @param value the new value of the 'Feature Version' attribute. * @see #getFeatureVersion() * @generated */ void setFeatureVersion(String value); /** * Returns the value of the 'Srs Name' attribute. * *

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

* * @return the value of the 'Srs Name' attribute. * @see #setSrsName(URI) * @see net.opengis.wfs20.Wfs20Package#getQueryType_SrsName() * @model dataType="net.opengis.wfs20.URI" * @generated */ URI getSrsName(); /** * Sets the value of the '{@link net.opengis.wfs20.QueryType#getSrsName Srs Name}' attribute. * * * @param value the new value of the 'Srs Name' attribute. * @see #getSrsName() * @generated */ void setSrsName(URI value); /** * Convenience method to cast {@link #getAbstractSelectionClause()} to a filter object. * * @model */ Filter getFilter(); /** * Sets the value of the '{@link net.opengis.wfs20.QueryType#getFilter Filter}' attribute. * * * @param value the new value of the 'Filter' attribute. * @see #getFilter() * @generated */ void setFilter(Filter value); /** * Convenience method to cast {@link #getAbstractProjectionClause()} to list of QName. * * @model */ EList getPropertyNames(); /** * Convenience method to cast {@link #getAbstractSortingClause()} to a list of SortBy. * * @model */ EList getSortBy(); } // QueryType