XSLTProcessor
An XSLTProcessor
applies an XSLT stylesheet transformation to an XML document to produce a new XML document as output.
Functions
The clearParameters()
method of the XSLTProcessor interface removes all parameters (<xsl:param>
) and their values from the stylesheet imported in the processor.
The getParameter()
method of the XSLTProcessor interface returns the value of a parameter (<xsl:param>
) from the stylesheet imported in the processor.
The importStylesheet()
method of the XSLTProcessor interface imports an XSLT stylesheet for the processor.
The removeParameter()
method of the XSLTProcessor interface removes the parameter (<xsl:param>
) and its value from the stylesheet imported in the processor.
The setParameter()
method of the XSLTProcessor interface sets the value of a parameter (<xsl:param>
) in the stylesheet imported in the processor.
The transformToDocument()
method of the XSLTProcessor interface transforms the provided Node source to a Document using the XSLT stylesheet associated with XSLTProcessor
.
The transformToFragment()
method of the XSLTProcessor interface transforms a provided Node source to a DocumentFragment using the XSLT stylesheet associated with the XSLTProcessor
.