/** * <copyright> * </copyright> * * $Id$ */ package net.opengis.ows11; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Value Type</b></em>'. * <!-- end-user-doc --> * * <!-- begin-model-doc --> * 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. * <!-- end-model-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link net.opengis.ows11.ValueType#getValue <em>Value</em>}</li> * </ul> * </p> * * @see net.opengis.ows11.Ows11Package#getValueType() * @model extendedMetaData="name='ValueType' kind='simple'" * @generated */ public interface ValueType extends EObject { /** * Returns the value of the '<em><b>Value</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Value</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Value</em>' 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 <em>Value</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Value</em>' attribute. * @see #getValue() * @generated */ void setValue(String value); } // ValueType