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

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

Introduction

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

The text is from its open source code.

Field

StringFEATURE
If javax.xml.transform.TransformerFactory#getFeature returns true when passed this value as an argument, the Transformer supports Result output of this type.

Constructor

SAXResult(ContentHandler handler)
Create a SAXResult that targets a SAX2 org.xml.sax.ContentHandler .
SAXResult()
Zero-argument default constructor.

Method

ContentHandlergetHandler()
Get the org.xml.sax.ContentHandler that is the Result.
LexicalHandlergetLexicalHandler()
Get a SAX2 org.xml.sax.ext.LexicalHandler for the output.
voidsetHandler(ContentHandler handler)
Set the target to be a SAX2 org.xml.sax.ContentHandler .
voidsetLexicalHandler(LexicalHandler handler)
Set the SAX2 org.xml.sax.ext.LexicalHandler for the output.
voidsetSystemId(String systemId)
Method setSystemId Set the systemID that may be used in association with the org.xml.sax.ContentHandler .