NotesXSLTResultTarget (JavaScript)

Contains the result of a transformation by the XSL processor.

Usage

This class is a wrapper for NotesXSLTResultTarget in the com.lotus.xsl package.

An instance of this class provides a container for the XSLT result tree. XSLTResultTarget extends java.lang.Object.

XSLTResultTarget has the following constructors and methods.
Constructor or method Description
NotesXSLTResultTarget() Creates a new output target.
NotesXSLTResultTarget(node:DOMNode) Creates a new output target using a DOM node.
NotesXSLTResultTarget(charstream:java.io.Writer) Creates a new output target using a character stream.
NotesXSLTResultTarget(bytestream:java.io.OutputStream) Creates a new output target using a byte stream.
NotesXSLTResultTarget(str:string) Creates a new output target using a file name or URL.
getByteStream() : java.io.OutputStream Gets the byte stream for the output target.
getCharacterStream() : java.io.Writer Gets the character stream for the output target.
getEncoding() : string Gets the character encoding, or null for no encoding.
getFilename() : string Gets the file name or URL for the output target.
getNode() : DOMNode Gets the DOM node for the output target.
setByteStream(bytestream:java.io.OutputStream) : void Sets a byte stream for the output target.
setCharacterStream(charstream:java.io.Writer) : void Sets a character stream for the output target.
setFilename(filename:string) : void Sets a file name or URL for the output target.
setNode(node:DOMNode) : void Sets a DOM node for the output target.