/** * * * * $Id$ */ package net.opengis.wcs11; import net.opengis.ows11.CodeType; /** * * A representation of the model object 'Get Coverage Type'. * * *

* The following features are supported: *

*

* * @see net.opengis.wcs11.Wcs11Package#getGetCoverageType() * @model extendedMetaData="name='GetCoverage_._type' kind='elementOnly'" * @generated */ public interface GetCoverageType extends RequestBaseType { /** * Returns the value of the 'Identifier' containment reference. * * * * Identifier of the coverage that this GetCoverage operation request shall draw from. * * @return the value of the 'Identifier' containment reference. * @see #setIdentifier(CodeType) * @see net.opengis.wcs11.Wcs11Package#getGetCoverageType_Identifier() * @model containment="true" required="true" * extendedMetaData="kind='element' name='Identifier' namespace='http://www.opengis.net/ows/1.1'" * @generated */ CodeType getIdentifier(); /** * Sets the value of the '{@link net.opengis.wcs11.GetCoverageType#getIdentifier Identifier}' containment reference. * * * @param value the new value of the 'Identifier' containment reference. * @see #getIdentifier() * @generated */ void setIdentifier(CodeType value); /** * Returns the value of the 'Domain Subset' containment reference. * *

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

* * @return the value of the 'Domain Subset' containment reference. * @see #setDomainSubset(DomainSubsetType) * @see net.opengis.wcs11.Wcs11Package#getGetCoverageType_DomainSubset() * @model containment="true" required="true" * extendedMetaData="kind='element' name='DomainSubset' namespace='##targetNamespace'" * @generated */ DomainSubsetType getDomainSubset(); /** * Sets the value of the '{@link net.opengis.wcs11.GetCoverageType#getDomainSubset Domain Subset}' containment reference. * * * @param value the new value of the 'Domain Subset' containment reference. * @see #getDomainSubset() * @generated */ void setDomainSubset(DomainSubsetType value); /** * Returns the value of the 'Range Subset' containment reference. * * * * Optional selection of a subset of the coverage's range. * * @return the value of the 'Range Subset' containment reference. * @see #setRangeSubset(RangeSubsetType) * @see net.opengis.wcs11.Wcs11Package#getGetCoverageType_RangeSubset() * @model containment="true" * extendedMetaData="kind='element' name='RangeSubset' namespace='##targetNamespace'" * @generated */ RangeSubsetType getRangeSubset(); /** * Sets the value of the '{@link net.opengis.wcs11.GetCoverageType#getRangeSubset Range Subset}' containment reference. * * * @param value the new value of the 'Range Subset' containment reference. * @see #getRangeSubset() * @generated */ void setRangeSubset(RangeSubsetType value); /** * Returns the value of the 'Output' containment reference. * *

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

* * @return the value of the 'Output' containment reference. * @see #setOutput(OutputType) * @see net.opengis.wcs11.Wcs11Package#getGetCoverageType_Output() * @model containment="true" required="true" * extendedMetaData="kind='element' name='Output' namespace='##targetNamespace'" * @generated */ OutputType getOutput(); /** * Sets the value of the '{@link net.opengis.wcs11.GetCoverageType#getOutput Output}' containment reference. * * * @param value the new value of the 'Output' containment reference. * @see #getOutput() * @generated */ void setOutput(OutputType value); } // GetCoverageType