Is there any way to access, through dom4j, the internal DTD declarations that may appear in a document?
Example (from the XML standard):
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE greeting [
<!ELEMENT greeting (#PCDATA)>
]>
<greeting>Hello, world!</greeting>
Getting the DocType only returns the system and public ids, it would be kind of useful if you could do getText() (or something similar) on DocType and get the internal DTD as a string.
Cheers,
-- Steen
/**
* Steen Lehmann - <mailto:[EMAIL PROTECTED]>
* Senior Software Engineer (R&D), SilverStream Software
* <http://www.silverstream.com>
*/
