/** * <copyright> * </copyright> * * $Id$ */ package net.opengis.ows10; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Description Type</b></em>'. * <!-- end-user-doc --> * * <!-- begin-model-doc --> * Human-readable descriptive information for the object it is included within. * This type shall be extended if needed for specific OWS use to include additional metadata for each type of information. This type shall not be restricted for a specific OWS to change the multiplicity (or optionality) of some elements. * <!-- end-model-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link net.opengis.ows10.DescriptionType#getTitle <em>Title</em>}</li> * <li>{@link net.opengis.ows10.DescriptionType#getAbstract <em>Abstract</em>}</li> * <li>{@link net.opengis.ows10.DescriptionType#getKeywords <em>Keywords</em>}</li> * </ul> * </p> * * @see net.opengis.ows10.Ows10Package#getDescriptionType() * @model extendedMetaData="name='DescriptionType' kind='elementOnly'" * @generated */ public interface DescriptionType extends EObject { /** * Returns the value of the '<em><b>Title</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Title</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Title</em>' attribute. * @see #setTitle(String) * @see net.opengis.ows10.Ows10Package#getDescriptionType_Title() * @model unique="false" dataType="org.eclipse.emf.ecore.xml.type.String" * extendedMetaData="kind='element' name='Title' namespace='##targetNamespace'" * @generated */ String getTitle(); /** * Sets the value of the '{@link net.opengis.ows10.DescriptionType#getTitle <em>Title</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Title</em>' attribute. * @see #getTitle() * @generated */ void setTitle(String value); /** * Returns the value of the '<em><b>Abstract</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Abstract</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Abstract</em>' attribute. * @see #setAbstract(String) * @see net.opengis.ows10.Ows10Package#getDescriptionType_Abstract() * @model unique="false" dataType="org.eclipse.emf.ecore.xml.type.String" * extendedMetaData="kind='element' name='Abstract' namespace='##targetNamespace'" * @generated */ String getAbstract(); /** * Sets the value of the '{@link net.opengis.ows10.DescriptionType#getAbstract <em>Abstract</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Abstract</em>' attribute. * @see #getAbstract() * @generated */ void setAbstract(String value); /** * Returns the value of the '<em><b>Keywords</b></em>' containment reference list. * The list contents are of type {@link net.opengis.ows10.KeywordsType}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Keywords</em>' containment reference list isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Keywords</em>' containment reference list. * @see net.opengis.ows10.Ows10Package#getDescriptionType_Keywords() * @model type="net.opengis.ows10.KeywordsType" containment="true" * extendedMetaData="kind='element' name='Keywords' namespace='##targetNamespace'" * @generated */ EList getKeywords(); } // DescriptionType