Skip to content

First stable version

Compare
Choose a tag to compare
@yegor256 yegor256 released this 29 Oct 06:01
· 534 commits to master since this release

First stable version that enables parsing and printing of XML documents:

XML xml = new XMLDocument("<hello><foo>hey</foo></hello>");
System.out.println(xml.nodes("/hello/foo").get(0));

will output:

<foo>hey</foo>