/** * * * * $Id$ */ package net.opengis.wps; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Values Reference Type'. * * * * References an externally defined finite set of values and ranges for this input. * * *

* The following features are supported: *

*

* * @see net.opengis.wps.WpsPackage#getValuesReferenceType() * @model extendedMetaData="name='ValuesReferenceType' kind='empty'" * @generated */ public interface ValuesReferenceType extends EObject { /** * Returns the value of the 'Reference' attribute. * * * * Reference to data or metadata recorded elsewhere, either external to this XML document or within it. Whenever practical, this attribute should be a URL from which this metadata can be electronically retrieved. Alternately, this attribute can reference a URN for well-known metadata. For example, such a URN could be a URN defined in the "ogc" URN namespace. * * @return the value of the 'Reference' attribute. * @see #setReference(String) * @see net.opengis.wps.WpsPackage#getValuesReferenceType_Reference() * @model dataType="org.eclipse.emf.ecore.xml.type.AnyURI" * extendedMetaData="kind='attribute' name='reference' namespace='http://www.opengis.net/ows/1.1'" * @generated */ String getReference(); /** * Sets the value of the '{@link net.opengis.wps.ValuesReferenceType#getReference Reference}' attribute. * * * @param value the new value of the 'Reference' attribute. * @see #getReference() * @generated */ void setReference(String value); /** * Returns the value of the 'Values Form' attribute. * * * * Reference to a description of the mimetype, encoding, and schema used for this set of values and ranges. * * @return the value of the 'Values Form' attribute. * @see #setValuesForm(String) * @see net.opengis.wps.WpsPackage#getValuesReferenceType_ValuesForm() * @model dataType="org.eclipse.emf.ecore.xml.type.AnyURI" * extendedMetaData="kind='attribute' name='valuesForm'" * @generated */ String getValuesForm(); /** * Sets the value of the '{@link net.opengis.wps.ValuesReferenceType#getValuesForm Values Form}' attribute. * * * @param value the new value of the 'Values Form' attribute. * @see #getValuesForm() * @generated */ void setValuesForm(String value); } // ValuesReferenceType