/** * * * * $Id$ */ package net.opengis.wcs11; import net.opengis.ows11.DescriptionType; import net.opengis.ows11.DomainMetadataType; import org.eclipse.emf.common.util.EList; /** * * A representation of the model object 'Axis Type'. * * * * Definition of one axis in a field for which there are a vector of values. * This type is largely a subset of the ows:DomainType as needed for a range field axis. * * *

* The following features are supported: *

*

* * @see net.opengis.wcs11.Wcs111Package#getAxisType() * @model extendedMetaData="name='AxisType' kind='elementOnly'" * @generated */ public interface AxisType extends DescriptionType { /** * Returns the value of the 'Available Keys' containment reference. * * * * List of all the available (valid) key values for this axis. For numeric keys, signed values should be ordered from negative infinity to positive infinity. * * @return the value of the 'Available Keys' containment reference. * @see #setAvailableKeys(AvailableKeysType) * @see net.opengis.wcs11.Wcs111Package#getAxisType_AvailableKeys() * @model containment="true" required="true" * extendedMetaData="kind='element' name='AvailableKeys' namespace='##targetNamespace'" * @generated */ AvailableKeysType getAvailableKeys(); /** * Sets the value of the '{@link net.opengis.wcs11.AxisType#getAvailableKeys Available Keys}' containment reference. * * * @param value the new value of the 'Available Keys' containment reference. * @see #getAvailableKeys() * @generated */ void setAvailableKeys(AvailableKeysType value); /** * Returns the value of the 'Meaning' containment reference. * * * * Meaning metadata, which should be referenced for this axis. * * @return the value of the 'Meaning' containment reference. * @see #setMeaning(DomainMetadataType) * @see net.opengis.wcs11.Wcs111Package#getAxisType_Meaning() * @model containment="true" * extendedMetaData="kind='element' name='Meaning' namespace='http://www.opengis.net/ows/1.1'" * @generated */ DomainMetadataType getMeaning(); /** * Sets the value of the '{@link net.opengis.wcs11.AxisType#getMeaning Meaning}' containment reference. * * * @param value the new value of the 'Meaning' containment reference. * @see #getMeaning() * @generated */ void setMeaning(DomainMetadataType value); /** * Returns the value of the 'Data Type' containment reference. * * * * Data type metadata, which may be referenced for this axis. * * @return the value of the 'Data Type' containment reference. * @see #setDataType(DomainMetadataType) * @see net.opengis.wcs11.Wcs111Package#getAxisType_DataType() * @model containment="true" * extendedMetaData="kind='element' name='DataType' namespace='http://www.opengis.net/ows/1.1'" * @generated */ DomainMetadataType getDataType(); /** * Sets the value of the '{@link net.opengis.wcs11.AxisType#getDataType Data Type}' containment reference. * * * @param value the new value of the 'Data Type' containment reference. * @see #getDataType() * @generated */ void setDataType(DomainMetadataType value); /** * Returns the value of the 'UOM' containment reference. * * * * Identifier of unit of measure of this set of values. Should be included then this set of values has units (and not a more complete reference system). * * @return the value of the 'UOM' containment reference. * @see #setUOM(DomainMetadataType) * @see net.opengis.wcs11.Wcs111Package#getAxisType_UOM() * @model containment="true" * extendedMetaData="kind='element' name='UOM' namespace='http://www.opengis.net/ows/1.1'" * @generated */ DomainMetadataType getUOM(); /** * Sets the value of the '{@link net.opengis.wcs11.AxisType#getUOM UOM}' containment reference. * * * @param value the new value of the 'UOM' containment reference. * @see #getUOM() * @generated */ void setUOM(DomainMetadataType value); /** * Returns the value of the 'Reference System' containment reference. * * * * Identifier of reference system used by this set of values. Should be included then this set of values has a reference system (not just units). * * @return the value of the 'Reference System' containment reference. * @see #setReferenceSystem(DomainMetadataType) * @see net.opengis.wcs11.Wcs111Package#getAxisType_ReferenceSystem() * @model containment="true" * extendedMetaData="kind='element' name='ReferenceSystem' namespace='http://www.opengis.net/ows/1.1'" * @generated */ DomainMetadataType getReferenceSystem(); /** * Sets the value of the '{@link net.opengis.wcs11.AxisType#getReferenceSystem Reference System}' containment reference. * * * @param value the new value of the 'Reference System' containment reference. * @see #getReferenceSystem() * @generated */ void setReferenceSystem(DomainMetadataType value); /** * Returns the value of the 'Metadata' containment reference list. * The list contents are of type {@link net.opengis.ows11.MetadataType}. * * * * Optional unordered list of other metadata elements about this axis. A list of required and optional other metadata elements for this quantity can be specified in a WCS Application Profile. * * @return the value of the 'Metadata' containment reference list. * @see net.opengis.wcs11.Wcs111Package#getAxisType_Metadata() * @model type="net.opengis.ows11.MetadataType" containment="true" * extendedMetaData="kind='element' name='Metadata' namespace='http://www.opengis.net/ows/1.1'" * @generated */ EList getMetadata(); /** * Returns the value of the 'Identifier' attribute. * * * * Name or identifier of this axis. * * @return the value of the 'Identifier' attribute. * @see #setIdentifier(String) * @see net.opengis.wcs11.Wcs111Package#getAxisType_Identifier() * @model dataType="net.opengis.wcs11.IdentifierType" required="true" * extendedMetaData="kind='attribute' name='identifier'" * @generated */ String getIdentifier(); /** * Sets the value of the '{@link net.opengis.wcs11.AxisType#getIdentifier Identifier}' attribute. * * * @param value the new value of the 'Identifier' attribute. * @see #getIdentifier() * @generated */ void setIdentifier(String value); } // AxisType