public interface DOMAdapter
Defines a standard set of adapter methods for interfacing with a DOM parser and obtaining a DOM org.w3c.dom.Document
object. Implementing classes map these calls to DOM parser-specific calls, allowing any third-party parser to be used with JDOM.
Method Summary | |
---|---|
org.w3c.dom.Document | createDocument() This creates an empty Document object based on a specific parser implementation. |
org.w3c.dom.Document | createDocument(DocType doctype) This creates an empty Document object based on a specific parser implementation with the given DOCTYPE. |
org.w3c.dom.Document | getDocument(java.io.File filename, boolean validate) This creates a new Document from a given filename by letting a DOM parser handle parsing from the file. |
org.w3c.dom.Document | getDocument(java.io.InputStream in, boolean validate) This creates a new Document from an existing InputStream by letting a DOM parser handle parsing using the supplied stream. |
Method Detail |
---|
org.w3c.dom.Document getDocument(java.io.File filename, boolean validate) throws java.io.IOException, JDOMException
Document
from a given filename by letting a DOM parser handle parsing from the file. filename
- file to parse.validate
- boolean
to indicate if validation should occur. Document
- instance ready for use. java.io.IOException
- when I/O error occurs. JDOMException
- when errors occur in parsing.org.w3c.dom.Document getDocument(java.io.InputStream in, boolean validate) throws java.io.IOException, JDOMException
Document
from an existing InputStream
by letting a DOM parser handle parsing using the supplied stream. in
- InputStream
to parse.validate
- boolean
to indicate if validation should occur. Document
- instance ready for use. java.io.IOException
- when I/O error occurs. JDOMException
- when errors occur in parsing.org.w3c.dom.Document createDocument() throws JDOMException
Document
object based on a specific parser implementation. Document
- created DOM Document. JDOMException
- when errors occur.org.w3c.dom.Document createDocument(DocType doctype) throws JDOMException
Document
object based on a specific parser implementation with the given DOCTYPE. doctype
- Initial DocType
of the document. Document
- created DOM Document. JDOMException
- when errors occur.