Uses of Interface
org.xml.sax.DocumentHandler

Packages that use DocumentHandler
org.apache.html.dom   
org.apache.xerces.parsers   
org.apache.xml.resolver.readers Apache XML Commons Resolver Readers package. 
org.apache.xml.resolver.tools Apache XML Commons Resolver Tools package. 
org.apache.xml.serialize   
org.xml.sax This package provides the core SAX APIs. 
org.xml.sax.helpers This package contains "helper" classes, including support for bootstrapping SAX-based applications. 
 

Uses of DocumentHandler in org.apache.html.dom
 

Classes in org.apache.html.dom that implement DocumentHandler
 class HTMLBuilder
          This is a SAX document handler that is used to build an HTML document.
 

Uses of DocumentHandler in org.apache.xerces.parsers
 

Methods in org.apache.xerces.parsers with parameters of type DocumentHandler
 void AbstractSAXParser.setDocumentHandler(DocumentHandler documentHandler)
          Allow an application to register a document event handler.
 

Uses of DocumentHandler in org.apache.xml.resolver.readers
 

Subinterfaces of DocumentHandler in org.apache.xml.resolver.readers
 interface SAXCatalogParser
          The SAXCatalogParser interface.
 

Classes in org.apache.xml.resolver.readers that implement DocumentHandler
 class ExtendedXMLCatalogReader
          Parse Extended OASIS Entity Resolution Technical Committee XML Catalog files.
 class OASISXMLCatalogReader
          Parse OASIS Entity Resolution Technical Committee XML Catalog files.
 class SAXCatalogReader
          A SAX-based CatalogReader.
 class XCatalogReader
          Parse "XCatalog" XML Catalog files, this is the XML Catalog format developed by John Cowan and supported by Apache.
 

Uses of DocumentHandler in org.apache.xml.resolver.tools
 

Classes in org.apache.xml.resolver.tools that implement DocumentHandler
 class ResolvingParser
          Deprecated. This interface has been replaced by the ResolvingXMLReader for SAX2.
 

Methods in org.apache.xml.resolver.tools with parameters of type DocumentHandler
 void ResolvingParser.setDocumentHandler(DocumentHandler handler)
          Deprecated. SAX Parser API.
 

Uses of DocumentHandler in org.apache.xml.serialize
 

Classes in org.apache.xml.serialize that implement DocumentHandler
 class BaseMarkupSerializer
          Deprecated. This class was deprecated in Xerces 2.9.0. It is recommended that new applications use the DOM Level 3 LSSerializer or JAXP's Transformation API for XML (TrAX) for serializing XML. See the Xerces documentation for more information.
 class HTMLSerializer
          Deprecated. This class was deprecated in Xerces 2.6.2. It is recommended that new applications use JAXP's Transformation API for XML (TrAX) for serializing HTML. See the Xerces documentation for more information.
 class TextSerializer
          Deprecated. This class was deprecated in Xerces 2.9.0. It is recommended that new applications use the DOM Level 3 LSSerializer or JAXP's Transformation API for XML (TrAX) for serializing XML and HTML. See the Xerces documentation for more information.
 class XHTMLSerializer
          Deprecated. This class was deprecated in Xerces 2.6.2. It is recommended that new applications use JAXP's Transformation API for XML (TrAX) for serializing XHTML. See the Xerces documentation for more information.
 class XML11Serializer
          Deprecated. This class was deprecated in Xerces 2.9.0. It is recommended that new applications use the DOM Level 3 LSSerializer or JAXP's Transformation API for XML (TrAX) for serializing XML. See the Xerces documentation for more information.
 class XMLSerializer
          Deprecated. This class was deprecated in Xerces 2.9.0. It is recommended that new applications use the DOM Level 3 LSSerializer or JAXP's Transformation API for XML (TrAX) for serializing XML. See the Xerces documentation for more information.
 

Methods in org.apache.xml.serialize that return DocumentHandler
 DocumentHandler Serializer.asDocumentHandler()
          Deprecated. Return a DocumentHandler interface into this serializer.
 DocumentHandler BaseMarkupSerializer.asDocumentHandler()
          Deprecated.  
 

Uses of DocumentHandler in org.xml.sax
 

Classes in org.xml.sax that implement DocumentHandler
 class HandlerBase
          Deprecated. This class works with the deprecated DocumentHandler interface. It has been replaced by the SAX2 DefaultHandler class.
 

Methods in org.xml.sax with parameters of type DocumentHandler
 void Parser.setDocumentHandler(DocumentHandler handler)
          Deprecated. Allow an application to register a document event handler.
 

Uses of DocumentHandler in org.xml.sax.helpers
 

Classes in org.xml.sax.helpers that implement DocumentHandler
 class ParserAdapter
          Adapt a SAX1 Parser as a SAX2 XMLReader.
 

Methods in org.xml.sax.helpers with parameters of type DocumentHandler
 void XMLReaderAdapter.setDocumentHandler(DocumentHandler handler)
          Register the SAX1 document event handler.