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.servers.www This package contains the OPeNDAP WWW client. 
opendap.servlet This package contains the core code for an OPeNDAP servlet engine. 
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.servers.www
 

Methods in opendap.servers.www with parameters of type DDS
 void wwwOutPut.writeGlobalAttributes(DAS das, DDS dds)
           
 void wwwOutPut.writeVariableEntries(DAS das, DDS dds)
           
 

Uses of DDS in opendap.servlet
 

Methods in opendap.servlet that return DDS
 DDS GetHTMLInterfaceHandler.getWebFormDDS(java.lang.String dataSet, ServerDDS sDDS)
          ************************************************************************ Gets a DDS for the specified data set and builds it using the class factory in the package opendap.servers.www.
 

Methods in opendap.servlet with parameters of type DDS
 void AsciiWriter.toASCII(java.io.PrintWriter pw, DDS dds, java.lang.Object specialO)
           
 

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)