Google

: Class SAXResult


Class SAXResult

java.lang.Object

  |



Acts as an holder for a transformation Result.



returns true when passed this value as an argument, the Transformer supports Result output of this type.
Field Summary
static java.lang.String
 
          Zero-argument default constructor.
          Create a SAXResult that targets a SAX2 ContentHandler.
Constructor Summary
 
          Get the system identifier that was set with setSystemId.
          Set the target to be a SAX2 ContentHandler.
          Set the SAX2 LexicalHandler for the output.
          Method setSystemId Set the systemID that may be used in association with the ContentHandler.
Method Summary

          Get the ContentHandler that is the Result.

          Get a SAX2 LexicalHandler for the output.
 java.lang.String
 void
 void
 void
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

FEATURE

public static final java.lang.String FEATURE
returns true when passed this value as an argument, the Transformer supports Result output of this type.
Constructor Detail

SAXResult

public SAXResult()
Zero-argument default constructor.

SAXResult

Create a SAXResult that targets a SAX2 ContentHandler.
Parameters:
handler - Must be a non-null ContentHandler reference.
Method Detail
setHandler

Set the target to be a SAX2 ContentHandler.
Parameters:
handler - Must be a non-null ContentHandler reference.

getHandler


Get the ContentHandler that is the Result.
Returns:
The ContentHandler that is to be transformation output.

setLexicalHandler

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.

getLexicalHandler


Get a SAX2 LexicalHandler for the output.
Returns:
A LexicalHandler, or null.

setSystemId

public void setSystemId(java.lang.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.

getSystemId

public java.lang.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.