/** * * * * $Id$ */ package net.opengis.wcs11; import net.opengis.ows11.CapabilitiesBaseType; /** * * A representation of the model object 'Capabilities Type'. * * *

* The following features are supported: *

*

* * @see net.opengis.wcs11.Wcs111Package#getCapabilitiesType() * @model extendedMetaData="name='Capabilities_._type' kind='elementOnly'" * @generated */ public interface CapabilitiesType extends CapabilitiesBaseType { /** * Returns the value of the 'Contents' containment reference. * * * * Contents section of WCS service metadata (or Capabilities) XML document. For the WCS, these contents are brief metadata about the coverages available from this server, or a reference to another source from which this metadata is available. * * @return the value of the 'Contents' containment reference. * @see #setContents(ContentsType) * @see net.opengis.wcs11.Wcs111Package#getCapabilitiesType_Contents() * @model containment="true" * extendedMetaData="kind='element' name='Contents' namespace='##targetNamespace'" * @generated */ ContentsType getContents(); /** * Sets the value of the '{@link net.opengis.wcs11.CapabilitiesType#getContents Contents}' containment reference. * * * @param value the new value of the 'Contents' containment reference. * @see #getContents() * @generated */ void setContents(ContentsType value); } // CapabilitiesType