Java javax.xml.transform.sax TransformerHandler fields, constructors, methods, implement or subclass

Example usage for Java javax.xml.transform.sax TransformerHandler fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.xml.transform.sax TransformerHandler.

The text is from its open source code.

Implementation

javax.xml.transform.sax.TransformerHandler has the following implementations.
Click this link to see all its implementation.

Method

voidcharacters(char ch[], int start, int length)
Receive notification of character data.
voidcomment(char ch[], int start, int length)
Report an XML comment anywhere in the document.
voidendCDATA()
Report the end of a CDATA section.
voidendDocument()
Receive notification of the end of a document.
voidendElement(String uri, String localName, String qName)
Receive notification of the end of an element.
voidendPrefixMapping(String prefix)
End the scope of a prefix-URI mapping.
ClassgetClass()
Returns the runtime class of this Object .
TransformergetTransformer()

Get the Transformer associated with this handler, which is needed in order to set parameters and output properties.

voidsetResult(Result result)

Set the Result associated with this TransformerHandler to be used for the transformation.

voidstartCDATA()
Report the start of a CDATA section.
voidstartDocument()
Receive notification of the beginning of a document.
voidstartElement(String uri, String localName, String qName, Attributes atts)
Receive notification of the beginning of an element.
voidstartPrefixMapping(String prefix, String uri)
Begin the scope of a prefix-URI Namespace mapping.