javax.xml.transform.sax
Interface TransformerHandler
- All Superinterfaces:
- ContentHandler, DTDHandler, LexicalHandler
- 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
Methods inherited from interface org.xml.sax.ContentHandler |
characters, endDocument, endElement, endPrefixMapping, ignorableWhitespace, processingInstruction, setDocumentLocator, skippedEntity, startDocument, startElement, startPrefixMapping |
setResult
public void setResult(Result result)
throws java.lang.IllegalArgumentException
- Assigns the result of the transform.
setSystemId
public void setSystemId(java.lang.String systemID)
getSystemId
public java.lang.String getSystemId()
getTransformer
public Transformer getTransformer()
- Returns the associated transformer, for use in setting
parameters and output properties.
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 2001-11-20.