Skip to content

XSL and XSLDocument

Compare
Choose a tag to compare
@yegor256 yegor256 released this 31 Oct 18:29
· 567 commits to master since this release

A new class and a new interface added in this version, XSLDocument and XSL respectfully. Transformation of XML is as easy as this:

XML first = new XMLDocument("<hello/>");
XML second = new XSLDocument(xsl).transform(first);