Uses of Class
opendap.dap.DDS

Packages that use DDS
opendap.dap This package contains the OPeNDAP core classes, known as the Data Access Protocol (DAP). 
opendap.dap.Server This package contains the OPeNDAP Server classes. 
opendap.dap.XMLparser   
opendap.util This package contains utility classes used by several OPeNDAP packages. 
 

Uses of DDS in opendap.dap
 

Subclasses of DDS in opendap.dap
 class DataDDS
          The DataDDS class extends DDS to add new methods for retrieving data from the server, and printing out the contents of the data.
 

Methods in opendap.dap that return DDS
 DDS DConnect.getDDS()
          Returns the DDS object from the dataset referenced by this object's URL.
 DDS DConnect2.getDDS()
          Returns the DDS object from the dataset referenced by this object's URL.
 DDS DConnect.getDDS(java.lang.String CE)
          Returns the DDS object from the dataset referenced by this object's URL.
 DDS DConnect2.getDDS(java.lang.String CE)
          Returns the DDS object from the dataset referenced by this object's URL.
 DDS DConnect.getDDX()
          Returns the DDS object from the dataset referenced by this object's URL.
 DDS DConnect2.getDDX()
          Returns the DDS object from the dataset referenced by this object's URL.
 DDS DConnect.getDDX(java.lang.String CE)
          Returns the DDS object from the dataset referenced by this object's URL.
 DDS DConnect2.getDDX(java.lang.String CE)
          Returns the DDS object from the dataset referenced by this object's URL.
 

Uses of DDS in opendap.dap.Server
 

Subclasses of DDS in opendap.dap.Server
 class ServerDDS
          ServerDDS is a specialization of DDS for the server-side of OPeNDAP.
 

Uses of DDS in opendap.dap.XMLparser
 

Methods in opendap.dap.XMLparser with parameters of type DDS
 void DDSXMLParser.parse(org.jdom.Document ddx, DDS targetDDS, BaseTypeFactory fac, boolean validation)
          Parse the DDX waiting in the InputStream and instantiate all of the member BaseType variables and their associated Attributes into a DDS using the passed BaseTypeFactory
 void DDSXMLParser.parse(java.io.InputStream is, DDS targetDDS, BaseTypeFactory fac, boolean validation)
          Parse the DDX waiting in the InputStream and instantiate all of the member BaseType variables and their associated Attributes into a DDS using the passed BaseTypeFactory
 

Uses of DDS in opendap.util
 

Methods in opendap.util with parameters of type DDS
static boolean dasTools.nameInDDS(java.lang.String name, DDS dds)