AI-generated Key Takeaways
-
SAXResultacts as a holder for transformation results, allowing you to target a SAX2ContentHandler. -
It provides methods for setting and retrieving the
ContentHandler,LexicalHandler, and system identifier. -
You can create a
SAXResultusing a zero-argument constructor or by specifying aContentHandlerdirectly. -
The
FEATUREconstant indicates if aTransformersupportsSAXResultoutput. -
LexicalHandlercan be set to handle XML comments and other lexical events during transformation.
Acts as an holder for a transformation Result.
Constant Summary
| String | FEATURE | If TransformerFactory.getFeature(String)
returns true when passed this value as an argument,
the Transformer supports Result output of this type. |
Inherited Constant Summary
Public Constructor Summary
|
SAXResult()
Zero-argument default constructor.
|
|
Public Method Summary
| 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 | |
| void | |
| void |
setSystemId(String systemId)
Method setSystemId Set the systemID that may be used in association
with the
ContentHandler. |
Inherited Method Summary
Constants
public static final String FEATURE
If TransformerFactory.getFeature(String)
returns true when passed this value as an argument,
the Transformer supports Result output of this type.
Public Constructors
public SAXResult ()
Zero-argument default constructor.
public SAXResult (ContentHandler handler)
Create a SAXResult that targets a SAX2 ContentHandler.
Parameters
| handler | Must be a non-null ContentHandler reference. |
|---|
Public Methods
public ContentHandler getHandler ()
Get the ContentHandler that is the Result.
Returns
- The ContentHandler that is to be transformation output.
public LexicalHandler getLexicalHandler ()
Get a SAX2 LexicalHandler for the output.
Returns
- A
LexicalHandler, or null.
public String getSystemId ()
Get the system identifier that was set with setSystemId.
Returns
- The system identifier that was set with setSystemId, or null if setSystemId was not called.
public void setHandler (ContentHandler handler)
Set the target to be a SAX2 ContentHandler.
Parameters
| handler | Must be a non-null ContentHandler reference. |
|---|
public void setLexicalHandler (LexicalHandler handler)
Set the SAX2 LexicalHandler 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 to a
LexicalHandler.
Parameters
| handler | A non-null LexicalHandler for
handling lexical parse events.
|
|---|
public void setSystemId (String systemId)
Method setSystemId Set the systemID that may be used in association
with the ContentHandler.
Parameters
| systemId | The system identifier as a URI string. |
|---|