/** * * * * $Id$ */ package net.opengis.wps; import java.util.List; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'UO Ms Type'. * * * * Identifies a UOM supported for this input or output. * * * * @see net.opengis.wps.WpsPackage#getUOMsType() * @model extendedMetaData="name='UOMsType' kind='elementOnly'" * @generated */ public interface UOMsType extends EObject { /** * Returns the value of the 'UOM' containment reference list. * The list contents are of type {@link javax.measure.unit.Unit}. * * 1. Changed net.opengis.ows11.DomainMetadataType to javax.measure.unit.Unit * 2. Removed all annotations and changed EList return type to just List and * also updated the Impl class the same way. * * * Reference to a UOM supported for this input or output. * * @return the value of the 'UOM' containment reference list. * @see net.opengis.wps.WpsPackage#getUOMsType_UOM() * */ List getUOM(); } // UOMsType