----- Original Message ----- From: "Tony Montgomery Smith" <[EMAIL PROTECTED]> > JDOM have a rather neat "transform" package, that has a technique for > transforming a JDOM Document directly into another JDOM Document, rather > than having to create XML, then transform, then parse back.
This feature has been in dom4j for many months now, since the 0.2 release! The JDOM "transform" package does exactly the same as the org.dom4j.io.DocumentSource and org.dom4j.io.DocumentResult classes do. Both act as a JAXP (TrAX) Source and Result objects so that an XSL transformation can use an existing dom4j document source (DocumentSource) or the output can generate a new dom4j document result (DocumentResult). There's an example of these classes in use here (right at the bottom of the page)... http://dom4j.org/guide.html > Are their plans for anything similar in dom4j? The plan was finished back in April in the 0.2 release ;-) James _________________________________________________________ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com _______________________________________________ dom4j-user mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/dom4j-user
