/** * * * * $Id$ */ package net.opengis.ows10; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Code Type'. * * * * Name or code with an (optional) authority. If the codeSpace attribute is present, its value should reference a dictionary, thesaurus, or authority for the name or code, such as the organisation who assigned the value, or the dictionary from which it is taken. * Type copied from basicTypes.xsd of GML 3 with documentation edited, for possible use outside the ServiceIdentification section of a service metadata document. * * *

* The following features are supported: *

*

* * @see net.opengis.ows10.Ows10Package#getCodeType() * @model extendedMetaData="name='CodeType' kind='simple'" * @generated */ public interface CodeType extends EObject { /** * Returns the value of the 'Value' attribute. * *

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

* * @return the value of the 'Value' attribute. * @see #setValue(String) * @see net.opengis.ows10.Ows10Package#getCodeType_Value() * @model unique="false" dataType="org.eclipse.emf.ecore.xml.type.String" * extendedMetaData="name=':0' kind='simple'" * @generated */ String getValue(); /** * Sets the value of the '{@link net.opengis.ows10.CodeType#getValue Value}' attribute. * * * @param value the new value of the 'Value' attribute. * @see #getValue() * @generated */ void setValue(String value); /** * Returns the value of the 'Code Space' attribute. * *

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

* * @return the value of the 'Code Space' attribute. * @see #setCodeSpace(String) * @see net.opengis.ows10.Ows10Package#getCodeType_CodeSpace() * @model unique="false" dataType="org.eclipse.emf.ecore.xml.type.AnyURI" * extendedMetaData="kind='attribute' name='codeSpace'" * @generated */ String getCodeSpace(); /** * Sets the value of the '{@link net.opengis.ows10.CodeType#getCodeSpace Code Space}' attribute. * * * @param value the new value of the 'Code Space' attribute. * @see #getCodeSpace() * @generated */ void setCodeSpace(String value); } // CodeType