- java.lang.Object
-
- 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 and Description static String
FEATURE
IfTransformerFactory.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
PI_DISABLE_OUTPUT_ESCAPING, PI_ENABLE_OUTPUT_ESCAPING
-
-
Constructor Summary
Constructors Constructor and Description SAXResult()
Zero-argument default constructor.SAXResult(ContentHandler handler)
Create a SAXResult that targets a SAX2ContentHandler
.
-
Method Summary
Methods Modifier and Type Method and Description ContentHandler
getHandler()
Get theContentHandler
that is the Result.LexicalHandler
getLexicalHandler()
Get a SAX2LexicalHandler
for the output.String
getSystemId()
Get the system identifier that was set with setSystemId.void
setHandler(ContentHandler handler)
Set the target to be a SAX2ContentHandler
.void
setLexicalHandler(LexicalHandler handler)
Set the SAX2LexicalHandler
for the output.void
setSystemId(String systemId)
Method setSystemId Set the systemID that may be used in association with theContentHandler
.
-
-
-
Field Detail
-
FEATURE
public static final String FEATURE
IfTransformerFactory.getFeature(java.lang.String)
returns true when passed this value as an argument, the Transformer supports Result output of this type.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
SAXResult
public SAXResult()
Zero-argument default constructor.
-
SAXResult
public SAXResult(ContentHandler handler)
Create a SAXResult that targets a SAX2ContentHandler
.- Parameters:
handler
- Must be a non-null ContentHandler reference.
-
-
Method Detail
-
setHandler
public void setHandler(ContentHandler handler)
Set the target to be a SAX2ContentHandler
.- Parameters:
handler
- Must be a non-null ContentHandler reference.
-
getHandler
public ContentHandler getHandler()
Get theContentHandler
that is the Result.- Returns:
- The ContentHandler that is to be transformation output.
-
setLexicalHandler
public void setLexicalHandler(LexicalHandler handler)
Set the SAX2LexicalHandler
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 aLexicalHandler
.- Parameters:
handler
- A non-nullLexicalHandler
for handling lexical parse events.
-
getLexicalHandler
public LexicalHandler getLexicalHandler()
Get a SAX2LexicalHandler
for the output.- Returns:
- A
LexicalHandler
, or null.
-
setSystemId
public void setSystemId(String systemId)
Method setSystemId Set the systemID that may be used in association with theContentHandler
.- Specified by:
setSystemId
in interfaceResult
- Parameters:
systemId
- The system identifier as a URI string.
-
getSystemId
public String getSystemId()
Get the system identifier that was set with setSystemId.- Specified by:
getSystemId
in interfaceResult
- Returns:
- The system identifier that was set with setSystemId, or null if setSystemId was not called.
-
-
Document created the 11/06/2005, last modified the 04/03/2020
Source of the printed document:https://www.gaudry.be/en/java-api-rf-javax/xml/transform/sax/saxresult.html
The infobrol is a personal site whose content is my sole responsibility. The text is available under CreativeCommons license (BY-NC-SA). More info on the terms of use and the author.
References
These references and links indicate documents consulted during the writing of this page, or which may provide additional information, but the authors of these sources can not be held responsible for the content of this page.
The author This site is solely responsible for the way in which the various concepts, and the freedoms that are taken with the reference works, are presented here. Remember that you must cross multiple source information to reduce the risk of errors.