/** * * * * $Id$ */ package net.opengis.wps; import net.opengis.ows11.CodeType; import net.opengis.ows11.LanguageStringType; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Description Type'. * * * * Description of a WPS process or output object. * * *

* The following features are supported: *

*

* * @see net.opengis.wps.WpsPackage#getDescriptionType() * @model extendedMetaData="name='DescriptionType' kind='elementOnly'" * @generated */ public interface DescriptionType extends EObject { /** * Returns the value of the 'Identifier' containment reference. * * * * Unambiguous identifier or name of a process, unique for this server, or unambiguous identifier or name of an output, unique for this process. * * @return the value of the 'Identifier' containment reference. * @see #setIdentifier(CodeType) * @see net.opengis.wps.WpsPackage#getDescriptionType_Identifier() * @model containment="true" required="true" * extendedMetaData="kind='element' name='Identifier' namespace='http://www.opengis.net/ows/1.1'" * @generated */ CodeType getIdentifier(); /** * Sets the value of the '{@link net.opengis.wps.DescriptionType#getIdentifier Identifier}' containment reference. * * * @param value the new value of the 'Identifier' containment reference. * @see #getIdentifier() * @generated */ void setIdentifier(CodeType value); /** * Returns the value of the 'Title' containment reference. * * * * Title of a process or output, normally available for display to a human. * * @return the value of the 'Title' containment reference. * @see #setTitle(LanguageStringType) * @see net.opengis.wps.WpsPackage#getDescriptionType_Title() * @model containment="true" required="true" * extendedMetaData="kind='element' name='Title' namespace='http://www.opengis.net/ows/1.1'" * @generated */ LanguageStringType getTitle(); /** * Sets the value of the '{@link net.opengis.wps.DescriptionType#getTitle Title}' containment reference. * * * @param value the new value of the 'Title' containment reference. * @see #getTitle() * @generated */ void setTitle(LanguageStringType value); /** * Returns the value of the 'Abstract' containment reference. * * * * Brief narrative description of a process or output, normally available for display to a human. * * @return the value of the 'Abstract' containment reference. * @see #setAbstract(LanguageStringType) * @see net.opengis.wps.WpsPackage#getDescriptionType_Abstract() * @model containment="true" * extendedMetaData="kind='element' name='Abstract' namespace='http://www.opengis.net/ows/1.1'" * @generated */ LanguageStringType getAbstract(); /** * Sets the value of the '{@link net.opengis.wps.DescriptionType#getAbstract Abstract}' containment reference. * * * @param value the new value of the 'Abstract' containment reference. * @see #getAbstract() * @generated */ void setAbstract(LanguageStringType 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 additional metadata about this process/input/output. A list of optional and/or required metadata elements for this process/input/output could be specified in an Application Profile for this service. * * @return the value of the 'Metadata' containment reference list. * @see net.opengis.wps.WpsPackage#getDescriptionType_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(); } // DescriptionType