/** * * * * $Id$ */ package net.opengis.fes20; import javax.xml.namespace.QName; import net.opengis.ows11.MetadataType; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Available Function Type'. * * *

* The following features are supported: *

*

* * @see net.opengis.fes20.Fes20Package#getAvailableFunctionType() * @model extendedMetaData="name='AvailableFunctionType' kind='elementOnly'" * @generated */ public interface AvailableFunctionType extends EObject { /** * Returns the value of the 'Metadata' containment reference. * *

* If the meaning of the 'Metadata' containment reference isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Metadata' containment reference. * @see #setMetadata(MetadataType) * @see net.opengis.fes20.Fes20Package#getAvailableFunctionType_Metadata() * @model containment="true" * extendedMetaData="kind='element' name='Metadata' namespace='http://www.opengis.net/ows/1.1'" * @generated */ MetadataType getMetadata(); /** * Sets the value of the '{@link net.opengis.fes20.AvailableFunctionType#getMetadata Metadata}' containment reference. * * * @param value the new value of the 'Metadata' containment reference. * @see #getMetadata() * @generated */ void setMetadata(MetadataType value); /** * Returns the value of the 'Returns' attribute. * *

* If the meaning of the 'Returns' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Returns' attribute. * @see #setReturns(QName) * @see net.opengis.fes20.Fes20Package#getAvailableFunctionType_Returns() * @model dataType="org.eclipse.emf.ecore.xml.type.QName" required="true" * extendedMetaData="kind='element' name='Returns' namespace='##targetNamespace'" * @generated */ QName getReturns(); /** * Sets the value of the '{@link net.opengis.fes20.AvailableFunctionType#getReturns Returns}' attribute. * * * @param value the new value of the 'Returns' attribute. * @see #getReturns() * @generated */ void setReturns(QName value); /** * Returns the value of the 'Arguments' containment reference. * *

* If the meaning of the 'Arguments' containment reference isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Arguments' containment reference. * @see #setArguments(ArgumentsType) * @see net.opengis.fes20.Fes20Package#getAvailableFunctionType_Arguments() * @model containment="true" * extendedMetaData="kind='element' name='Arguments' namespace='##targetNamespace'" * @generated */ ArgumentsType getArguments(); /** * Sets the value of the '{@link net.opengis.fes20.AvailableFunctionType#getArguments Arguments}' containment reference. * * * @param value the new value of the 'Arguments' containment reference. * @see #getArguments() * @generated */ void setArguments(ArgumentsType value); /** * Returns the value of the 'Name' attribute. * *

* If the meaning of the 'Name' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Name' attribute. * @see #setName(String) * @see net.opengis.fes20.Fes20Package#getAvailableFunctionType_Name() * @model dataType="org.eclipse.emf.ecore.xml.type.String" required="true" * extendedMetaData="kind='attribute' name='name'" * @generated */ String getName(); /** * Sets the value of the '{@link net.opengis.fes20.AvailableFunctionType#getName Name}' attribute. * * * @param value the new value of the 'Name' attribute. * @see #getName() * @generated */ void setName(String value); } // AvailableFunctionType