Class SAXResult
java.lang.Object
javax.xml.transform.sax.SAXResult
- All Implemented Interfaces:
Result
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringIfTransformerFactory.getFeature(String)returns true when passed this value as an argument, the Transformer supports Result output of this type.Fields declared in interface Result
PI_DISABLE_OUTPUT_ESCAPING, PI_ENABLE_OUTPUT_ESCAPINGModifier and TypeFieldDescriptionstatic final StringThe name of the processing instruction that is sent if the result tree disables output escaping.static final StringThe name of the processing instruction that is sent if the result tree enables output escaping at some point after having received a PI_DISABLE_OUTPUT_ESCAPING processing instruction. -
Constructor Summary
ConstructorsConstructorDescriptionZero-argument default constructor.SAXResult(ContentHandler handler) Create a SAXResult that targets a SAX2ContentHandler. -
Method Summary
Modifier and TypeMethodDescriptionGet theContentHandlerthat is the Result.Get a SAX2LexicalHandlerfor the output.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.Methods declared in class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitModifier and TypeMethodDescriptionprotected Objectclone()Creates and returns a copy of this object.booleanIndicates whether some other object is "equal to" this one.protected voidfinalize()Deprecated, for removal: This API element is subject to removal in a future version.Finalization is deprecated and subject to removal in a future release.final Class<?> getClass()Returns the runtime class of thisObject.inthashCode()Returns a hash code value for this object.final voidnotify()Wakes up a single thread that is waiting on this object's monitor.final voidWakes up all threads that are waiting on this object's monitor.toString()Returns a string representation of the object.final voidwait()Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final voidwait(long timeoutMillis) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.final voidwait(long timeoutMillis, int nanos) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
-
Field Details
-
FEATURE
IfTransformerFactory.getFeature(String)returns true when passed this value as an argument, the Transformer supports Result output of this type.- See Also:
-
-
Constructor Details
-
SAXResult
public SAXResult()Zero-argument default constructor. -
SAXResult
Create a SAXResult that targets a SAX2ContentHandler.- Parameters:
handler- Must be a non-null ContentHandler reference.
-
-
Method Details
-
setHandler
Set the target to be a SAX2ContentHandler.- Parameters:
handler- Must be a non-null ContentHandler reference.
-
getHandler
Get theContentHandlerthat is the Result.- Returns:
- The ContentHandler that is to be transformation output.
-
setLexicalHandler
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-nullLexicalHandlerfor handling lexical parse events.
-
getLexicalHandler
Get a SAX2LexicalHandlerfor the output.- Returns:
- A
LexicalHandler, or null.
-
setSystemId
Method setSystemId Set the systemID that may be used in association with theContentHandler.- Specified by:
setSystemIdin interfaceResult- Parameters:
systemId- The system identifier as a URI string.
-
getSystemId
Get the system identifier that was set with setSystemId.- Specified by:
getSystemIdin interfaceResult- Returns:
- The system identifier that was set with setSystemId, or null if setSystemId was not called.
-