/** * <copyright> * </copyright> * * $Id$ */ package net.opengis.wcs10; import net.opengis.gml.CodeType; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Keywords Type</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link net.opengis.wcs10.KeywordsType#getKeyword <em>Keyword</em>}</li> * <li>{@link net.opengis.wcs10.KeywordsType#getType <em>Type</em>}</li> * </ul> * </p> * * @see net.opengis.wcs10.Wcs10Package#getKeywordsType() * @model extendedMetaData="name='keywords_._type' kind='elementOnly'" * @generated */ public interface KeywordsType extends EObject { /** * Returns the value of the '<em><b>Keyword</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Keyword</em>' attribute list isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Keyword</em>' attribute. * @see #setKeyword(String) * @see net.opengis.wcs10.Wcs10Package#getKeywordsType_Keyword() * @model unique="false" dataType="org.eclipse.emf.ecore.xml.type.String" required="true" * extendedMetaData="kind='element' name='keyword' namespace='##targetNamespace'" * @generated */ String getKeyword(); /** * Sets the value of the '{@link net.opengis.wcs10.KeywordsType#getKeyword <em>Keyword</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Keyword</em>' attribute. * @see #getKeyword() * @generated */ void setKeyword(String value); /** * Returns the value of the '<em><b>Type</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Type</em>' containment reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Type</em>' containment reference. * @see #setType(CodeType) * @see net.opengis.wcs10.Wcs10Package#getKeywordsType_Type() * @model containment="true" * extendedMetaData="kind='element' name='type' namespace='##targetNamespace'" * @generated */ CodeType getType(); /** * Sets the value of the '{@link net.opengis.wcs10.KeywordsType#getType <em>Type</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Type</em>' containment reference. * @see #getType() * @generated */ void setType(CodeType value); } // KeywordsType