Uses of Interface
com.caucho.xml.XMLWriter

Packages that use XMLWriter
com.caucho.xml XML parsing and printing package. 
com.caucho.xsl The XSLT transformation package. 
 

Uses of XMLWriter in com.caucho.xml
 

Classes in com.caucho.xml that implement XMLWriter
 class DOMBuilder
          XMLWriter to create a DOM document.
 class SAXBuilder
          XMLWriter to create a SAX events.
 class XmlPrinter
          Controls printing of XML documents.
 

Uses of XMLWriter in com.caucho.xsl
 

Classes in com.caucho.xsl that implement XMLWriter
 class TemplatesHandlerImpl
           
 class TransformerHandlerImpl
           
 

Methods in com.caucho.xsl that return XMLWriter
 XMLWriter XslWriter.pushAttribute(java.lang.String name)
          Adds a new attribute with the given name to the current node, making the attribute the current node.
 XMLWriter XslWriter.pushAttribute(java.lang.String name, NamespaceContext namespace)
          Adds a new attribute with the given name to the current node, making the attribute the current node.
 XMLWriter XslWriter.pushAttribute(java.lang.String prefix, java.lang.String local, java.lang.String url)
          Adds a namespace-aware attribute to the current node, making the new attribute the current node.
 XMLWriter XslWriter.pushAttributeNs(java.lang.String name, java.lang.String url)
          Adds a new attribute to the current node, making the new attribute the current node.
 XMLWriter XslWriter.pushFragment()
          Starts a fragment.
 

Methods in com.caucho.xsl with parameters of type XMLWriter
 void XslWriter.popAttribute(XMLWriter writer)
          Sets the attribute value to the current text, and sets the current node to the parent.
 org.w3c.dom.Node XslWriter.popFragment(XMLWriter oldWriter)
          Returns the generated fragment.
abstract  void AbstractStylesheet.transform(org.w3c.dom.Node xml, XMLWriter out, TransformerImpl transformer)
          Transforms the XML node to a new XML document based on this stylesheet.
 void IdentityStylesheet.transform(org.w3c.dom.Node xml, XMLWriter writer, TransformerImpl transformer)
          Transforms the XML node to a new XML document based on this stylesheet.
 void StylesheetImpl.transform(org.w3c.dom.Node xml, XMLWriter writer, TransformerImpl transformer)
          Transforms the input node to the output writer