/** * * * * $Id$ */ package net.opengis.wps; import javax.measure.unit.Unit; import net.opengis.ows11.DomainMetadataType; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Default Type1'. * * *

* The following features are supported: *

*

* * @see net.opengis.wps.WpsPackage#getDefaultType1() * @model extendedMetaData="name='Default_._2_._type' kind='elementOnly'" * @generated */ public interface DefaultType1 extends EObject { /** * Returns the value of the 'UOM' containment reference. * * * * Reference to the default UOM supported for this Input/Output * * @return the value of the 'UOM' containment reference. * @see #setUOM(DomainMetadataType) * @see net.opengis.wps.WpsPackage#getDefaultType1_UOM() * @model */ Unit getUOM(); /** * Sets the value of the '{@link net.opengis.wps.DefaultType1#getUOM UOM}' reference. * * * @param value the new value of the 'UOM' reference. * @see #getUOM() * @generated */ void setUOM(Unit value); } // DefaultType1