/** * * * * $Id$ */ package net.opengis.wps; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Languages Type1'. * * *

* The following features are supported: *

*

* * @see net.opengis.wps.WpsPackage#getLanguagesType1() * @model extendedMetaData="name='Languages_._type' kind='elementOnly'" * @generated */ public interface LanguagesType1 extends EObject { /** * Returns the value of the 'Default' containment reference. * * * * Identifies the default language that will be used unless the operation request specifies another supported language. * * @return the value of the 'Default' containment reference. * @see #setDefault(DefaultType2) * @see net.opengis.wps.WpsPackage#getLanguagesType1_Default() * @model containment="true" required="true" * extendedMetaData="kind='element' name='Default' namespace='##targetNamespace'" * @generated */ DefaultType2 getDefault(); /** * Sets the value of the '{@link net.opengis.wps.LanguagesType1#getDefault Default}' containment reference. * * * @param value the new value of the 'Default' containment reference. * @see #getDefault() * @generated */ void setDefault(DefaultType2 value); /** * Returns the value of the 'Supported' containment reference. * * * * Unordered list of references to all of the languages supported by this service. The default language shall be included in this list. * * @return the value of the 'Supported' containment reference. * @see #setSupported(LanguagesType) * @see net.opengis.wps.WpsPackage#getLanguagesType1_Supported() * @model containment="true" required="true" * extendedMetaData="kind='element' name='Supported' namespace='##targetNamespace'" * @generated */ LanguagesType getSupported(); /** * Sets the value of the '{@link net.opengis.wps.LanguagesType1#getSupported Supported}' containment reference. * * * @param value the new value of the 'Supported' containment reference. * @see #getSupported() * @generated */ void setSupported(LanguagesType value); } // LanguagesType1