Uses of Interface
org.xml.sax.ContentHandler

Packages that use ContentHandler
gnu.xml.aelfred2 This package contains Ælfred2, which includes an enhanced SAX2-compatible version of the Ælfred non-validating XML parser, a modular (and hence optional) DTD validating parser, and modular (and hence optional) JAXP glue to those. 
gnu.xml.dom This is a Free Software DOM Level 2 implementation, supporting these features: "XML", "Events", "MutationEvents", "HTMLEvents" (won't generate them though), "UIEvents" (also won't generate them), "USER-Events" (a conformant extension), and "Traversal" (optional; no TreeWalker yet). 
gnu.xml.pipeline This package exposes a kind of XML processing pipeline, based on sending SAX events, which can be used as components of application architectures. 
gnu.xml.util This package contains XML utilities, including SAX2 XML writers and a parser of DOM trees, plus a command line driver. 
org.xml.sax This package provides the core SAX APIs. 
org.xml.sax.ext This package contains interfaces to SAX2 facilities that conformant SAX drivers won't necessarily support. 
org.xml.sax.helpers This package contains "helper" classes, including support for bootstrapping SAX-based applications. 
 

Uses of ContentHandler in gnu.xml.aelfred2
 

Methods in gnu.xml.aelfred2 that return ContentHandler
 ContentHandler SAXDriver.getContentHandler()
          SAX2: Returns the object used to report the logical content of an XML document.
 ContentHandler XmlReader.getContentHandler()
          SAX2: Returns the object used to report the logical content of an XML document.
 

Methods in gnu.xml.aelfred2 with parameters of type ContentHandler
 void SAXDriver.setContentHandler(ContentHandler handler)
          SAX2: Assigns the object used to report the logical content of an XML document.
 void XmlReader.setContentHandler(ContentHandler handler)
          SAX2: Assigns the object used to report the logical content of an XML document.
 

Uses of ContentHandler in gnu.xml.dom
 

Classes in gnu.xml.dom that implement ContentHandler
static class Consumer.Backdoor
          Implements the backdoors needed by DOM.
 

Uses of ContentHandler in gnu.xml.pipeline
 

Classes in gnu.xml.pipeline that implement ContentHandler
static class DomConsumer.Handler
          Class used to intercept various parsing events and use them to populate a DOM document.
 class EventFilter
          A customizable event consumer, used to assemble various kinds of filters using SAX handlers and an optional second consumer.
 class LinkFilter
          Pipeline filter to remember XHTML links found in a document, so they can later be crawled.
 class NSFilter
          This filter ensures that element and attribute names are properly prefixed, and that such prefixes are declared.
 class TeeConsumer
          Fans its events out to two other consumers, a "tee" filter stage in an event pipeline.
 class TextConsumer
          Terminates a pipeline, consuming events to print them as well formed XML (or XHTML) text.
 class ValidationConsumer
          This class checks SAX2 events to report validity errors; it works as both a filter and a terminus on an event pipeline.
 class WellFormednessFilter
          This filter reports fatal exceptions in the case of event streams that are not well formed.
 class XIncludeFilter
          Filter to process an XPointer-free subset of XInclude, supporting its use as a kind of replacement for parsed general entities.
 class XsltFilter
          Packages an XSLT transform as a pipeline component.
 

Methods in gnu.xml.pipeline that return ContentHandler
 ContentHandler EventFilter.getContentHandler()
          Returns the content handler being used.
 ContentHandler CallFilter.getContentHandler()
          Returns the content handler currently in use.
 ContentHandler EventConsumer.getContentHandler()
          Most stages process these core SAX callbacks.
 ContentHandler DomConsumer.getContentHandler()
          Returns the document handler being used.
 ContentHandler TextConsumer.getContentHandler()
          EventConsumer Returns the document handler being used.
 ContentHandler TeeConsumer.getContentHandler()
          Returns the content handler being used.
 

Methods in gnu.xml.pipeline with parameters of type ContentHandler
 void EventFilter.setContentHandler(ContentHandler h)
          Assigns the content handler to use; a null handler indicates that these events will not be forwarded.
 

Uses of ContentHandler in gnu.xml.util
 

Classes in gnu.xml.util that implement ContentHandler
 class XHTMLWriter
          This extends XMLWriter to create a class which defaults to writing XHTML text, preferring the US-ASCII encoding.
 class XMLWriter
          This class is a SAX handler which writes all its input as a well formed XML or XHTML document.
 

Methods in gnu.xml.util that return ContentHandler
 ContentHandler DomParser.getContentHandler()
          SAX2: Returns the object used to report the logical content of an XML document.
 

Methods in gnu.xml.util with parameters of type ContentHandler
 void DomParser.setContentHandler(ContentHandler handler)
          SAX2: Assigns the object used to report the logical content of an XML document.
 

Uses of ContentHandler in org.xml.sax
 

Methods in org.xml.sax that return ContentHandler
 ContentHandler XMLReader.getContentHandler()
          Return the current content handler.
 

Methods in org.xml.sax with parameters of type ContentHandler
 void XMLReader.setContentHandler(ContentHandler handler)
          Allow an application to register a content event handler.
 

Uses of ContentHandler in org.xml.sax.ext
 

Classes in org.xml.sax.ext that implement ContentHandler
 class DefaultHandler2
          This class extends the SAX2 base handler class to support the SAX2 LexicalHandler and DeclHandler extensions.
 

Uses of ContentHandler in org.xml.sax.helpers
 

Classes in org.xml.sax.helpers that implement ContentHandler
 class DefaultHandler
          Default base class for SAX2 event handlers.
 class XMLFilterImpl
          Base class for deriving an XML filter.
 class XMLReaderAdapter
          Adapt a SAX2 XMLReader as a SAX1 Parser.
 

Methods in org.xml.sax.helpers that return ContentHandler
 ContentHandler XMLFilterImpl.getContentHandler()
          Get the content event handler.
 ContentHandler ParserAdapter.getContentHandler()
          Return the current content handler.
 

Methods in org.xml.sax.helpers with parameters of type ContentHandler
 void XMLFilterImpl.setContentHandler(ContentHandler handler)
          Set the content event handler.
 void ParserAdapter.setContentHandler(ContentHandler handler)
          Set the content handler.
 



Source code is under GPL (with library exception) in the JAXP project at http://www.gnu.org/software/classpathx/jaxp
This documentation was derived from that source code on 2008-04-13.