javax.xml.transform.sax

Interface TransformerHandler

public interface TransformerHandler extends ContentHandler, LexicalHandler, DTDHandler

Transforms SAX input events to a Result, according to some stylesheet. Note the expectation that XSLT transforms will discard most DTD declarations (DeclHandler is not supported).

Version: 1.0

Author: Andrew Selkirk, David Brownell

Method Summary
StringgetSystemId()
TransformergetTransformer()
Returns the associated transformer, for use in setting parameters and output properties.
voidsetResult(Result result)
Assigns the result of the transform.
voidsetSystemId(String systemID)

Method Detail

getSystemId

public String getSystemId()

getTransformer

public Transformer getTransformer()
Returns the associated transformer, for use in setting parameters and output properties.

setResult

public void setResult(Result result)
Assigns the result of the transform.

setSystemId

public void setSystemId(String systemID)

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 2011-08-26.