XSLTResultTarget (Java)

This is a wrapper class for the XSLTResultTarget class in the com.lotus.xsl package that contains the result of a transformation when you use the new XSL Processor. An instance of this class provides a container for the XSLT Result tree. The XSLTResultTarget class extends java.lang.Object.

Note: This class is new with Release 5.0.3.

The specification of the XSLTResultTarget class is as follows:

public class XSLTResultTarget extends java.lang.Object {
   public XSLTResultTarget();
   public XSLTResultTarget(java.lang.String filename);
   public XSLTResultTarget(java.io.OutputStream byteStream);
   public XSLTResultTarget(java.io.Writer characterStream);
   public XSLTResultTarget(org.w3c.dom.Node n);
   public java.io.OutputStream getByteStream()
   public java.io.Writer getCharacterStream()
   public java.lang.String getEncoding()
   public java.lang.String getFileName()
   public org.w3c.dom.Node getNode()
   public void setByteStream(java.io.OutputStream byteStream)
   public void setCharacterStream(java.io.Writer characterStream)
   public void setFileName(java.lang.String fileName)
   public void setNode(org.w3c.dom.Node node)