/** * * * * $Id$ */ package net.opengis.wcs11; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Interpolation Methods Type'. * * *

* The following features are supported: *

*

* * @see net.opengis.wcs11.Wcs111Package#getInterpolationMethodsType() * @model extendedMetaData="name='InterpolationMethods_._type' kind='elementOnly'" * @generated */ public interface InterpolationMethodsType extends EObject { /** * Returns the value of the 'Interpolation Method' containment reference list. * The list contents are of type {@link net.opengis.wcs11.InterpolationMethodType}. * * * * Unordered list of identifiers of spatial interpolation methods. * * @return the value of the 'Interpolation Method' containment reference list. * @see net.opengis.wcs11.Wcs111Package#getInterpolationMethodsType_InterpolationMethod() * @model type="net.opengis.wcs11.InterpolationMethodType" containment="true" required="true" * extendedMetaData="kind='element' name='InterpolationMethod' namespace='##targetNamespace'" * @generated */ EList getInterpolationMethod(); /** * Returns the value of the 'Default' attribute. * * * * Identifier of interpolation method that will be used if the client does not specify one. Should be included when a default exists and is known. * (Arliss) Can any string be used to identify an interpolation method in a KVP encoded Get Coverage operation request? * * @return the value of the 'Default' attribute. * @see #setDefault(String) * @see net.opengis.wcs11.Wcs111Package#getInterpolationMethodsType_Default() * @model dataType="org.eclipse.emf.ecore.xml.type.String" * extendedMetaData="kind='element' name='Default' namespace='##targetNamespace'" * @generated */ String getDefault(); /** * Sets the value of the '{@link net.opengis.wcs11.InterpolationMethodsType#getDefault Default}' attribute. * * * @param value the new value of the 'Default' attribute. * @see #getDefault() * @generated */ void setDefault(String value); } // InterpolationMethodsType