SAXResult (Java Platform SE 8 ) (original) (raw)
- javax.xml.transform.sax.SAXResult
All Implemented Interfaces:
Result
Direct Known Subclasses:
JAXBResult
public class SAXResult
extends Object
implements Result
Acts as an holder for a transformation Result.
Field Summary
Fields
Modifier and Type Field Description static String FEATURE If TransformerFactory.getFeature(java.lang.String) returns true when passed this value as an argument, the Transformer supports Result output of this type. * ### Fields inherited from interface javax.xml.transform.[Result](../../../../javax/xml/transform/Result.html "interface in javax.xml.transform") `[PI_DISABLE_OUTPUT_ESCAPING](../../../../javax/xml/transform/Result.html#PI%5FDISABLE%5FOUTPUT%5FESCAPING), [PI_ENABLE_OUTPUT_ESCAPING](../../../../javax/xml/transform/Result.html#PI%5FENABLE%5FOUTPUT%5FESCAPING)`
Constructor Summary
Constructors
Constructor Description SAXResult() Zero-argument default constructor. SAXResult(ContentHandler handler) Create a SAXResult that targets a SAX2 ContentHandler. Method Summary
All Methods Instance Methods Concrete Methods
Modifier and Type Method Description ContentHandler getHandler() Get the ContentHandler that is the Result. LexicalHandler getLexicalHandler() Get a SAX2 LexicalHandler for the output. String getSystemId() Get the system identifier that was set with setSystemId. void setHandler(ContentHandler handler) Set the target to be a SAX2 ContentHandler. void setLexicalHandler(LexicalHandler handler) Set the SAX2 LexicalHandler for the output. void setSystemId(String systemId) Method setSystemId Set the systemID that may be used in association with the ContentHandler. * ### Methods inherited from class java.lang.[Object](../../../../java/lang/Object.html "class in java.lang") `[clone](../../../../java/lang/Object.html#clone--), [equals](../../../../java/lang/Object.html#equals-java.lang.Object-), [finalize](../../../../java/lang/Object.html#finalize--), [getClass](../../../../java/lang/Object.html#getClass--), [hashCode](../../../../java/lang/Object.html#hashCode--), [notify](../../../../java/lang/Object.html#notify--), [notifyAll](../../../../java/lang/Object.html#notifyAll--), [toString](../../../../java/lang/Object.html#toString--), [wait](../../../../java/lang/Object.html#wait--), [wait](../../../../java/lang/Object.html#wait-long-), [wait](../../../../java/lang/Object.html#wait-long-int-)`
Field Detail
* #### FEATURE public static final [String](../../../../java/lang/String.html "class in java.lang") FEATURE See Also: [Constant Field Values](../../../../constant-values.html#javax.xml.transform.sax.SAXResult.FEATURE)
Constructor Detail
* #### SAXResult public SAXResult() Zero-argument default constructor. * #### SAXResult public SAXResult([ContentHandler](../../../../org/xml/sax/ContentHandler.html "interface in org.xml.sax") handler) Parameters: `handler` \- Must be a non-null ContentHandler reference.
Method Detail
* #### setHandler public void setHandler([ContentHandler](../../../../org/xml/sax/ContentHandler.html "interface in org.xml.sax") handler) Parameters: `handler` \- Must be a non-null ContentHandler reference. * #### getHandler public [ContentHandler](../../../../org/xml/sax/ContentHandler.html "interface in org.xml.sax") getHandler() Returns: The ContentHandler that is to be transformation output. * #### setLexicalHandler public void setLexicalHandler([LexicalHandler](../../../../org/xml/sax/ext/LexicalHandler.html "interface in org.xml.sax.ext") handler) Set the SAX2 [LexicalHandler](../../../../org/xml/sax/ext/LexicalHandler.html "interface in org.xml.sax.ext") for the output. This is needed to handle XML comments and the like. If the lexical handler is not set, an attempt should be made by the transformer to cast the [ContentHandler](../../../../org/xml/sax/ContentHandler.html "interface in org.xml.sax") to a`LexicalHandler`. Parameters: `handler` \- A non-null `LexicalHandler` for handling lexical parse events. * #### getLexicalHandler public [LexicalHandler](../../../../org/xml/sax/ext/LexicalHandler.html "interface in org.xml.sax.ext") getLexicalHandler() Returns: A `LexicalHandler`, or null. * #### setSystemId public void setSystemId([String](../../../../java/lang/String.html "class in java.lang") systemId) Method setSystemId Set the systemID that may be used in association with the [ContentHandler](../../../../org/xml/sax/ContentHandler.html "interface in org.xml.sax"). Specified by: `[setSystemId](../../../../javax/xml/transform/Result.html#setSystemId-java.lang.String-)` in interface `[Result](../../../../javax/xml/transform/Result.html "interface in javax.xml.transform")` Parameters: `systemId` \- The system identifier as a URI string. * #### getSystemId public [String](../../../../java/lang/String.html "class in java.lang") getSystemId() Get the system identifier that was set with setSystemId. Specified by: `[getSystemId](../../../../javax/xml/transform/Result.html#getSystemId--)` in interface `[Result](../../../../javax/xml/transform/Result.html "interface in javax.xml.transform")` Returns: The system identifier that was set with setSystemId, or null if setSystemId was not called.
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2025, Oracle and/or its affiliates. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.