/** * * * * $Id$ */ package net.opengis.ows10; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Description Type'. * * * * 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. * * *

* The following features are supported: *

*

* * @see net.opengis.ows10.Ows10Package#getDescriptionType() * @model extendedMetaData="name='DescriptionType' kind='elementOnly'" * @generated */ public interface DescriptionType extends EObject { /** * Returns the value of the 'Title' attribute. * *

* If the meaning of the 'Title' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Title' 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 Title}' attribute. * * * @param value the new value of the 'Title' attribute. * @see #getTitle() * @generated */ void setTitle(String value); /** * Returns the value of the 'Abstract' attribute. * *

* If the meaning of the 'Abstract' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Abstract' 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 Abstract}' attribute. * * * @param value the new value of the 'Abstract' attribute. * @see #getAbstract() * @generated */ void setAbstract(String value); /** * Returns the value of the 'Keywords' containment reference list. * The list contents are of type {@link net.opengis.ows10.KeywordsType}. * *

* If the meaning of the 'Keywords' containment reference list isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Keywords' 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