Uses of Interface
org.xml.sax.ContentHandler

Packages that use ContentHandler
org.apache.serialize Defines an interface for SAX and DOM serializers, a serializer factory and its configuration, the output format properties, and related interfaces. 
org.apache.trax Defines a global interface for generating Templates and performing XML transformations. 
org.apache.xalan.processor Parses an XSLT stylesheet document (which may include and import other stylesheet documents) and produces a StylesheetRoot (a TRaX Templates object). 
org.apache.xalan.stree Implementation of the Xalan Source Tree, which is a DOM implementation that is optimized for XSLT processing and the needs of Xalan -- derived nodes can index the children, and, combined with specialized node iterators (and tree walkers) can provide optimal child retrieval. 
org.apache.xalan.transformer In charge of run-time transformations and the production of result trees. 
org.apache.xalan.utils Implementation of Xalan utility classes. 
org.apache.xml.serialize.transition Translate SAX events, a DOM tree, or an XPath node-set return value into a stream. 
org.xml.sax SAX 2.0 interfaces. 
org.xml.sax.helpers SAX 2.0 implementation classes. 
 

Uses of ContentHandler in org.apache.serialize
 

Methods in org.apache.serialize that return ContentHandler
 ContentHandler Serializer.asContentHandler()
          Return a ContentHandler interface into this serializer.
 

Uses of ContentHandler in org.apache.trax
 

Subinterfaces of ContentHandler in org.apache.trax
 interface TemplatesBuilder
          This is a SAX ContentHandler that may be used to process SAX events into an Templates objects.
 

Methods in org.apache.trax that return ContentHandler
 ContentHandler Transformer.getInputContentHandler()
          Get a SAX2 ContentHandler for the input.
 

Uses of ContentHandler in org.apache.xalan.processor
 

Classes in org.apache.xalan.processor that implement ContentHandler
 class CompilingStylesheetHandler
          **For advanced use only** Initializes and processes a stylesheet via SAX events.
 class StylesheetHandler
          **For advanced use only** Initializes and processes a stylesheet via SAX events.
 class StylesheetPIHandler
          Handle the xml-stylesheet processing instruction.
 

Uses of ContentHandler in org.apache.xalan.stree
 

Classes in org.apache.xalan.stree that implement ContentHandler
 class SourceTreeHandler
          This class handles SAX2 parse events to create a source tree for transformation.
 class StreeDOMBuilder
           
 

Uses of ContentHandler in org.apache.xalan.transformer
 

Classes in org.apache.xalan.transformer that implement ContentHandler
 class ResultTreeHandler
          This class is a layer between the direct calls to the result tree content handler, and the transformer.
 class TransformerImpl
          **For advanced use only** The Xalan workhorse -- Collaborates with the XPath xcontext, the DOM, and the XPath engine, to transform a source tree of nodes into a result tree according to instructions and templates specified by a stylesheet tree.
 

Methods in org.apache.xalan.transformer that return ContentHandler
 ContentHandler ResultTreeHandler.getContentHandler()
          Return the current content handler.
 ContentHandler TransformerImpl.createResultContentHandler(Result outputTarget)
          **For advanced use only** Create a ContentHandler from a Result object.
 ContentHandler TransformerImpl.createResultContentHandler(Result outputTarget, OutputFormat format)
          **For advanced use only** Create a ContentHandler from a Result object.
 ContentHandler TransformerImpl.getInputContentHandler()
          **For advanced use only** Get a SAX2 ContentHandler for the input.
 

Methods in org.apache.xalan.transformer with parameters of type ContentHandler
 void ResultTreeHandler.init(TransformerImpl transformer, ContentHandler realHandler)
          Initializer method.
 void ResultTreeHandler.setContentHandler(ContentHandler ch)
          Set the current content handler.
 void TransformerImpl.executeChildTemplates(ElemTemplateElement elem, Node sourceNode, QName mode, ContentHandler handler)
          **For advanced use only** Execute each of the children of a template element.
 void TransformerImpl.setContentHandler(ContentHandler handler)
          **For advanced use only** Allow an application to register a content event handler.
 

Constructors in org.apache.xalan.transformer with parameters of type ContentHandler
ResultTreeHandler.ResultTreeHandler(TransformerImpl transformer, ContentHandler realHandler)
          Create a new result tree handler.
 

Uses of ContentHandler in org.apache.xalan.utils
 

Classes in org.apache.xalan.utils that implement ContentHandler
 class DOMBuilder
           This class takes SAX events (in addition to some extra events that SAX doesn't handle yet) and adds the result to a document or document fragment.
 

Methods in org.apache.xalan.utils that return ContentHandler
 ContentHandler TreeWalker.getFormatterListener()
          **For advanced use only** Get the ContentHandler used for the tree walk.
 

Constructors in org.apache.xalan.utils with parameters of type ContentHandler
TreeWalker.TreeWalker(ContentHandler formatterListener)
          **For advanced use only** Constructor.
 

Uses of ContentHandler in org.apache.xml.serialize.transition
 

Classes in org.apache.xml.serialize.transition that implement ContentHandler
 class BaseMarkupSerializer
          Base class for a serializer supporting both DOM and SAX pretty serializing of XML/HTML/XHTML documents.
 class HTMLSerializer
          Implements an HTML/XHTML serializer supporting both DOM and SAX pretty serializing.
 class TextSerializer
          Implements a text serializer supporting both DOM and SAX serializing.
 class XHTMLSerializer
          Implements an XHTML serializer supporting both DOM and SAX pretty serializing.
 class XMLSerializer
          Implements an XML serializer supporting both DOM and SAX pretty serializing.
 

Methods in org.apache.xml.serialize.transition that return ContentHandler
 ContentHandler BaseMarkupSerializer.asContentHandler()
           
 

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.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.
 



Copyright © 2000 Apache XML Project. All Rights Reserved.