/** * * * * $Id$ */ package net.opengis.wps; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Languages Type'. * * * * Identifies a list of languages supported by this service. * * *

* The following features are supported: *

*

* * @see net.opengis.wps.WpsPackage#getLanguagesType() * @model extendedMetaData="name='LanguagesType' kind='elementOnly'" * @generated */ public interface LanguagesType extends EObject { /** * Returns the value of the 'Language' attribute. * * * * Identifier of a language supported by the service. This language identifier shall be as specified in IETF RFC 4646. * * @return the value of the 'Language' attribute. * @see #setLanguage(String) * @see net.opengis.wps.WpsPackage#getLanguagesType_Language() * @model unique="false" dataType="org.eclipse.emf.ecore.xml.type.Language" required="true" * extendedMetaData="kind='element' name='Language' namespace='http://www.opengis.net/ows/1.1'" * @generated */ String getLanguage(); /** * Sets the value of the '{@link net.opengis.wps.LanguagesType#getLanguage Language}' attribute. * * * @param value the new value of the 'Language' attribute. * @see #getLanguage() * @generated */ void setLanguage(String value); } // LanguagesType