- java.lang.Object
- 
- javax.xml.transform.sax.SAXResult
 
- 
- 
Field SummaryFields Modifier and Type Field Description static StringFEATUREIfTransformerFactory.getFeature(java.lang.String)returns true when passed this value as an argument, the Transformer supports Result output of this type.- 
Fields declared in interface javax.xml.transform.ResultPI_DISABLE_OUTPUT_ESCAPING, PI_ENABLE_OUTPUT_ESCAPING
 
- 
 - 
Constructor SummaryConstructors Constructor Description SAXResult()Zero-argument default constructor.SAXResult(ContentHandler handler)Create a SAXResult that targets a SAX2ContentHandler.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description ContentHandlergetHandler()Get theContentHandlerthat is the Result.LexicalHandlergetLexicalHandler()Get a SAX2LexicalHandlerfor the output.StringgetSystemId()Get the system identifier that was set with setSystemId.voidsetHandler(ContentHandler handler)Set the target to be a SAX2ContentHandler.voidsetLexicalHandler(LexicalHandler handler)Set the SAX2LexicalHandlerfor the output.voidsetSystemId(String systemId)Method setSystemId Set the systemID that may be used in association with theContentHandler.
 
- 
- 
- 
Field Detail- 
FEATUREpublic 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- 
SAXResultpublic SAXResult() Zero-argument default constructor.
 - 
SAXResultpublic SAXResult(ContentHandler handler) Create a SAXResult that targets a SAX2ContentHandler.- Parameters:
- handler- Must be a non-null ContentHandler reference.
 
 
- 
 - 
Method Detail- 
setHandlerpublic void setHandler(ContentHandler handler) Set the target to be a SAX2ContentHandler.- Parameters:
- handler- Must be a non-null ContentHandler reference.
 
 - 
getHandlerpublic ContentHandler getHandler() Get theContentHandlerthat is the Result.- Returns:
- The ContentHandler that is to be transformation output.
 
 - 
setLexicalHandlerpublic void setLexicalHandler(LexicalHandler handler) Set the SAX2LexicalHandlerfor 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 ContentHandlerto aLexicalHandler.- Parameters:
- handler- A non-null- LexicalHandlerfor handling lexical parse events.
 
 - 
getLexicalHandlerpublic LexicalHandler getLexicalHandler() Get a SAX2LexicalHandlerfor the output.- Returns:
- A LexicalHandler, or null.
 
 - 
setSystemIdpublic void setSystemId(String systemId) Method setSystemId Set the systemID that may be used in association with theContentHandler.- Specified by:
- setSystemIdin interface- Result
- Parameters:
- systemId- The system identifier as a URI string.
 
 - 
getSystemIdpublic String getSystemId() Get the system identifier that was set with setSystemId.- Specified by:
- getSystemIdin interface- Result
- Returns:
- The system identifier that was set with setSystemId, or null if setSystemId was not called.
 
 
- 
 
-