Class SAXResult
- java.lang.Object
-
- javax.xml.transform.sax.SAXResult
- All Implemented Interfaces:
Result
public class SAXResult extends Object implements Result
Acts as an holder for a transformation Result.
- Since:
- 1.4
Fields
Modifier and Type | Field | Description |
---|---|---|
static String | FEATURE | If |
Fields declared in interface javax.xml.transform.Result
PI_DISABLE_OUTPUT_ESCAPING, PI_ENABLE_OUTPUT_ESCAPING
Constructors
Constructor | Description |
---|---|
SAXResult() | Zero-argument default constructor. |
SAXResult(ContentHandler handler) | Create a SAXResult that targets a SAX2 |
Methods
Modifier and Type | Method | Description |
---|---|---|
ContentHandler | getHandler() | Get the |
LexicalHandler | getLexicalHandler() | Get a SAX2 |
String | getSystemId() | Get the system identifier that was set with setSystemId. |
void | setHandler(ContentHandler handler) | Set the target to be a SAX2 |
void | setLexicalHandler(LexicalHandler handler) | Set the SAX2 |
void | setSystemId(String systemId) | Method setSystemId Set the systemID that may be used in association with the |
Methods declared in class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Fields
FEATURE
public static final String FEATURE
If TransformerFactory.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
Constructors
SAXResult
public SAXResult()
Zero-argument default constructor.
SAXResult
public SAXResult(ContentHandler handler)
Create a SAXResult that targets a SAX2 ContentHandler
.
- Parameters:
-
handler
- Must be a non-null ContentHandler reference.
Methods
setHandler
public void setHandler(ContentHandler handler)
Set the target to be a SAX2 ContentHandler
.
- Parameters:
-
handler
- Must be a non-null ContentHandler reference.
getHandler
public ContentHandler getHandler()
Get the ContentHandler
that is the Result.
- Returns:
- The ContentHandler that is to be transformation output.
setLexicalHandler
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-nullLexicalHandler
for handling lexical parse events.
getLexicalHandler
public LexicalHandler getLexicalHandler()
Get a SAX2 LexicalHandler
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 the ContentHandler
.
- 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.
© 1993, 2020, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/11/docs/api/java.xml/javax/xml/transform/sax/SAXResult.html