iDOM"
From Documentation
(Created page with '{{ZKDevelopersGuidePageHeader}} Package: <tt>org.zkoss.idom</tt> An implementation of W3C DOM. It is inspired by JDOM<ref>http://www.jdom.org</ref> to have concrete classes for…') |
m (correct highlight (via JWB)) |
||
(2 intermediate revisions by one other user not shown) | |||
Line 1: | Line 1: | ||
{{ZKDevelopersGuidePageHeader}} | {{ZKDevelopersGuidePageHeader}} | ||
− | Package: < | + | Package: <code>org.zkoss.idom</code> |
An implementation of W3C DOM. It is inspired by JDOM<ref>http://www.jdom.org</ref> to have concrete classes for all XML objects, such as Element and Attribute. However, iDOM implements the W3C API, such as org.w3c.dom.Element. Thus, you could use iDOM seamlessly with XML utilities that only accept the W3C DOM. | An implementation of W3C DOM. It is inspired by JDOM<ref>http://www.jdom.org</ref> to have concrete classes for all XML objects, such as Element and Attribute. However, iDOM implements the W3C API, such as org.w3c.dom.Element. Thus, you could use iDOM seamlessly with XML utilities that only accept the W3C DOM. |
Latest revision as of 10:35, 19 January 2022
This documentation is for an older version of ZK. For the latest one, please click here.
Package: org.zkoss.idom
An implementation of W3C DOM. It is inspired by JDOM[1] to have concrete classes for all XML objects, such as Element and Attribute. However, iDOM implements the W3C API, such as org.w3c.dom.Element. Thus, you could use iDOM seamlessly with XML utilities that only accept the W3C DOM.
A typical example is XSLT and XPath. You could use any of favorite XSL processor and XPath utilities with iDOM.
Notes