/** * * * * $Id$ */ package net.opengis.ows11; import org.eclipse.emf.common.util.EList; /** * * A representation of the model object 'Reference Type'. * * * * Complete reference to a remote or local resource, allowing including metadata about that resource. * * *

* The following features are supported: *

*

* * @see net.opengis.ows11.Ows11Package#getReferenceType() * @model extendedMetaData="name='ReferenceType' kind='elementOnly'" * @generated */ public interface ReferenceType extends AbstractReferenceBaseType { /** * Returns the value of the 'Identifier' containment reference. * * * * Optional unique identifier of the referenced resource. * * @return the value of the 'Identifier' containment reference. * @see #setIdentifier(CodeType) * @see net.opengis.ows11.Ows11Package#getReferenceType_Identifier() * @model containment="true" * extendedMetaData="kind='element' name='Identifier' namespace='##targetNamespace'" * @generated */ CodeType getIdentifier(); /** * Sets the value of the '{@link net.opengis.ows11.ReferenceType#getIdentifier Identifier}' containment reference. * * * @param value the new value of the 'Identifier' containment reference. * @see #getIdentifier() * @generated */ void setIdentifier(CodeType value); /** * Returns the value of the 'Abstract' containment reference list. * The list contents are of type {@link net.opengis.ows11.LanguageStringType}. * * * * Brief narrative description of this resource, normally used for display to a human. * * @return the value of the 'Abstract' containment reference list. * @see net.opengis.ows11.Ows11Package#getReferenceType_Abstract() * @model type="net.opengis.ows11.LanguageStringType" containment="true" * extendedMetaData="kind='element' name='Abstract' namespace='##targetNamespace'" * @generated */ EList getAbstract(); /** * Returns the value of the 'Format' attribute. * * * * The format of the referenced resource. This element is omitted when the mime type is indicated in the http header of the reference. * * @return the value of the 'Format' attribute. * @see #setFormat(String) * @see net.opengis.ows11.Ows11Package#getReferenceType_Format() * @model dataType="net.opengis.ows11.MimeType" * extendedMetaData="kind='element' name='Format' namespace='##targetNamespace'" * @generated */ String getFormat(); /** * Sets the value of the '{@link net.opengis.ows11.ReferenceType#getFormat Format}' attribute. * * * @param value the new value of the 'Format' attribute. * @see #getFormat() * @generated */ void setFormat(String value); /** * Returns the value of the 'Metadata' containment reference list. * The list contents are of type {@link net.opengis.ows11.MetadataType}. * * * * Optional unordered list of additional metadata about this resource. A list of optional metadata elements for this ReferenceType could be specified in the Implementation Specification for each use of this type in a specific OWS. * * @return the value of the 'Metadata' containment reference list. * @see net.opengis.ows11.Ows11Package#getReferenceType_Metadata() * @model type="net.opengis.ows11.MetadataType" containment="true" * extendedMetaData="kind='element' name='Metadata' namespace='##targetNamespace'" * @generated */ EList getMetadata(); } // ReferenceType