/** * * * * $Id$ */ package net.opengis.fes20; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Measure Type'. * * *

* The following features are supported: *

*

* * @see net.opengis.fes20.Fes20Package#getMeasureType() * @model extendedMetaData="name='MeasureType' kind='simple'" * @generated */ public interface MeasureType 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 #isSetValue() * @see #unsetValue() * @see #setValue(double) * @see net.opengis.fes20.Fes20Package#getMeasureType_Value() * @model unsettable="true" dataType="org.eclipse.emf.ecore.xml.type.Double" * extendedMetaData="name=':0' kind='simple'" * @generated */ double getValue(); /** * Sets the value of the '{@link net.opengis.fes20.MeasureType#getValue Value}' attribute. * * * @param value the new value of the 'Value' attribute. * @see #isSetValue() * @see #unsetValue() * @see #getValue() * @generated */ void setValue(double value); /** * Unsets the value of the '{@link net.opengis.fes20.MeasureType#getValue Value}' attribute. * * * @see #isSetValue() * @see #getValue() * @see #setValue(double) * @generated */ void unsetValue(); /** * Returns whether the value of the '{@link net.opengis.fes20.MeasureType#getValue Value}' attribute is set. * * * @return whether the value of the 'Value' attribute is set. * @see #unsetValue() * @see #getValue() * @see #setValue(double) * @generated */ boolean isSetValue(); /** * Returns the value of the 'Uom' attribute. * *

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

* * @return the value of the 'Uom' attribute. * @see #setUom(String) * @see net.opengis.fes20.Fes20Package#getMeasureType_Uom() * @model dataType="net.opengis.fes20.UomIdentifier" required="true" * extendedMetaData="kind='attribute' name='uom'" * @generated */ String getUom(); /** * Sets the value of the '{@link net.opengis.fes20.MeasureType#getUom Uom}' attribute. * * * @param value the new value of the 'Uom' attribute. * @see #getUom() * @generated */ void setUom(String value); } // MeasureType