/** * * * * $Id$ */ package net.opengis.wps; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Supported CR Ss Type'. * * * * Listing of the Coordinate Reference System (CRS) support for this process input or output. * * *

* The following features are supported: *

*

* * @see net.opengis.wps.WpsPackage#getSupportedCRSsType() * @model extendedMetaData="name='SupportedCRSsType' kind='elementOnly'" * @generated */ public interface SupportedCRSsType extends EObject { /** * Returns the value of the 'Default' containment reference. * * * * Identifies the default CRS that will be used unless the Execute operation request specifies another supported CRS. * * @return the value of the 'Default' containment reference. * @see #setDefault(DefaultType) * @see net.opengis.wps.WpsPackage#getSupportedCRSsType_Default() * @model containment="true" required="true" * extendedMetaData="kind='element' name='Default'" * @generated */ DefaultType getDefault(); /** * Sets the value of the '{@link net.opengis.wps.SupportedCRSsType#getDefault Default}' containment reference. * * * @param value the new value of the 'Default' containment reference. * @see #getDefault() * @generated */ void setDefault(DefaultType value); /** * Returns the value of the 'Supported' containment reference. * * * * Unordered list of references to all of the CRSs supported for this Input/Output. The default CRS shall be included in this list. * * @return the value of the 'Supported' containment reference. * @see #setSupported(CRSsType) * @see net.opengis.wps.WpsPackage#getSupportedCRSsType_Supported() * @model containment="true" required="true" * extendedMetaData="kind='element' name='Supported'" * @generated */ CRSsType getSupported(); /** * Sets the value of the '{@link net.opengis.wps.SupportedCRSsType#getSupported Supported}' containment reference. * * * @param value the new value of the 'Supported' containment reference. * @see #getSupported() * @generated */ void setSupported(CRSsType value); } // SupportedCRSsType