/** * * * * $Id$ */ package net.opengis.wps; import net.opengis.ows11.DomainMetadataType; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Literal Output Type'. * * * * Description of a literal output (or input). * * *

* The following features are supported: *

*

* * @see net.opengis.wps.WpsPackage#getLiteralOutputType() * @model extendedMetaData="name='LiteralOutputType' kind='elementOnly'" * @generated */ public interface LiteralOutputType extends EObject { /** * Returns the value of the 'Data Type' containment reference. * * * * Data type of this set of values (e.g. integer, real, etc). This data type metadata should be included for each quantity whose data type is not a string. * * @return the value of the 'Data Type' containment reference. * @see #setDataType(DomainMetadataType) * @see net.opengis.wps.WpsPackage#getLiteralOutputType_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.wps.LiteralOutputType#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 'UO Ms' containment reference. * * * * List of supported units of measure for this input or output. This element should be included when this literal has a unit of measure (e.g., "meters", without a more complete reference system). Not necessary for a count, which has no units. * * @return the value of the 'UO Ms' containment reference. * @see #setUOMs(SupportedUOMsType) * @see net.opengis.wps.WpsPackage#getLiteralOutputType_UOMs() * @model containment="true" * extendedMetaData="kind='element' name='UOMs'" * @generated */ SupportedUOMsType getUOMs(); /** * Sets the value of the '{@link net.opengis.wps.LiteralOutputType#getUOMs UO Ms}' containment reference. * * * @param value the new value of the 'UO Ms' containment reference. * @see #getUOMs() * @generated */ void setUOMs(SupportedUOMsType value); } // LiteralOutputType