Uses of Interface
org.apache.xml.serializer.SerializationHandler

Packages that use SerializationHandler
org.apache.xml.dtm.ref.sax2dtm   
org.apache.xml.serializer Processes SAX events into streams. 
org.apache.xml.serializer.dom3   
 

Uses of SerializationHandler in org.apache.xml.dtm.ref.sax2dtm
 

Methods in org.apache.xml.dtm.ref.sax2dtm with parameters of type SerializationHandler
protected  void SAX2DTM2.copyAttribute(int nodeID, int exptype, SerializationHandler handler)
          Copy an Attribute node to a SerializationHandler
protected  void SAX2DTM2.copyAttributes(int nodeID, SerializationHandler handler)
          Copy attribute nodes from an element .
protected  java.lang.String SAX2DTM2.copyElement(int nodeID, int exptype, SerializationHandler handler)
          Copy an Element node to a SerializationHandler.
protected  void SAX2DTM2.copyNS(int nodeID, SerializationHandler handler, boolean inScope)
          Copy namespace nodes.
protected  void SAX2DTM2.copyTextNode(int nodeID, SerializationHandler handler)
          Copy the String value of a Text node to a SerializationHandler
 

Uses of SerializationHandler in org.apache.xml.serializer
 

Classes in org.apache.xml.serializer that implement SerializationHandler
 class EmptySerializer
          This class is an adapter class.
 class SerializerBase
          This class acts as a base class for the XML "serializers" and the stream serializers.
 class ToHTMLSAXHandler
          Deprecated. As of Xalan 2.7.1, replaced by the use of ToXMLSAXHandler.
 class ToHTMLStream
          This serializer takes a series of SAX or SAX-like events and writes its output to the given stream.
 class ToSAXHandler
          This class is used to provide a base behavior to be inherited by other To...SAXHandler serializers.
 class ToStream
          This abstract class is a base class for other stream serializers (xml, html, text ...) that write output to a stream.
 class ToTextSAXHandler
          Deprecated. As of Xalan 2.7.1, replaced by the use of ToXMLSAXHandler.
 class ToTextStream
          This class is not a public API.
 class ToUnknownStream
          This class wraps another SerializationHandler.
 class ToXMLSAXHandler
          This class receives notification of SAX-like events, and with gathered information over these calls it will invoke the equivalent SAX methods on a handler, the ultimate xsl:output method is known to be "xml".
 class ToXMLStream
          This class converts SAX or SAX-like calls to a serialized xml document.
 

Fields in org.apache.xml.serializer declared as SerializationHandler
private  SerializationHandler ToUnknownStream.m_handler
          The wrapped handler, initially XML but possibly switched to HTML
private  SerializationHandler TreeWalker.m_Serializer
          If m_contentHandler is a SerializationHandler, then this is a reference to the same object.
 

Uses of SerializationHandler in org.apache.xml.serializer.dom3
 

Fields in org.apache.xml.serializer.dom3 declared as SerializationHandler
private  SerializationHandler DOM3SerializerImpl.fSerializationHandler
           
private  SerializationHandler DOM3TreeWalker.fSerializer
          The SerializationHandler, it extends ContentHandler and when this class is instantiated via the constructor provided, a SerializationHandler object is passed to it.
 

Methods in org.apache.xml.serializer.dom3 with parameters of type SerializationHandler
 void DOM3SerializerImpl.setSerializationHandler(SerializationHandler handler)
          Sets a SerializationHandler on the DOM Serializer.
 

Constructors in org.apache.xml.serializer.dom3 with parameters of type SerializationHandler
DOM3SerializerImpl(SerializationHandler handler)
          Constructor
DOM3TreeWalker(SerializationHandler serialHandler, org.w3c.dom.DOMErrorHandler errHandler, org.w3c.dom.ls.LSSerializerFilter filter, java.lang.String newLine)
          Constructor.