Package | Description |
---|---|
com.caucho.xml |
XML parsing and printing package.
|
com.caucho.xsl |
The XSLT transformation package.
|
Modifier and Type | Class and Description |
---|---|
class |
DOMBuilder
XMLWriter to create a DOM document.
|
class |
SAXBuilder
XMLWriter to create a SAX events.
|
class |
XmlPrinter
Controls printing of XML documents.
|
Modifier and Type | Class and Description |
---|---|
class |
TemplatesHandlerImpl |
class |
TransformerHandlerImpl |
Modifier and Type | Method and Description |
---|---|
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.
|
Modifier and Type | Method and Description |
---|---|
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 |
StylesheetImpl.transform(org.w3c.dom.Node xml,
XMLWriter writer,
TransformerImpl transformer)
Transforms the input node to the output writer
|
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.
|