/** * * * * $Id$ */ package net.opengis.wfs20; import org.eclipse.emf.ecore.EObject; import org.eclipse.emf.ecore.util.FeatureMap; /** * * A representation of the model object 'Parameter Type'. * * *

* The following features are supported: *

*

* * @see net.opengis.wfs20.Wfs20Package#getParameterType() * @model extendedMetaData="name='ParameterType' kind='mixed'" * @generated */ public interface ParameterType extends EObject { /** * 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.wfs20.Wfs20Package#getParameterType_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.wfs20.ParameterType#getName Name}' attribute. * * * @param value the new value of the 'Name' attribute. * @see #getName() * @generated */ void setName(String value); /** * The parameter value. * @model */ String getValue(); /** * Sets the value of the '{@link net.opengis.wfs20.ParameterType#getValue Value}' attribute. * * * @param value the new value of the 'Value' attribute. * @see #getValue() * @generated */ void setValue(String value); } // ParameterType