/** * * * * $Id$ */ package net.opengis.ows11; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Value Type'. * * * * A single value, encoded as a string. This type can be used for one value, for a spacing between allowed values, or for the default value of a parameter. * * *

* The following features are supported: *

*

* * @see net.opengis.ows11.Ows11Package#getValueType() * @model extendedMetaData="name='ValueType' kind='simple'" * @generated */ public interface ValueType extends EObject { /** * Returns the value of the 'Value' attribute. * *

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

* * @return the value of the 'Value' attribute. * @see #setValue(String) * @see net.opengis.ows11.Ows11Package#getValueType_Value() * @model dataType="org.eclipse.emf.ecore.xml.type.String" * extendedMetaData="name=':0' kind='simple'" * @generated */ String getValue(); /** * Sets the value of the '{@link net.opengis.ows11.ValueType#getValue Value}' attribute. * * * @param value the new value of the 'Value' attribute. * @see #getValue() * @generated */ void setValue(String value); } // ValueType