Package org.jdom.adapters
Interface DOMAdapter
-
- All Known Implementing Classes:
AbstractDOMAdapter
,CrimsonDOMAdapter
,JAXPDOMAdapter
,OracleV1DOMAdapter
,OracleV2DOMAdapter
,XercesDOMAdapter
,XML4JDOMAdapter
public interface DOMAdapter
Defines a standard set of adapter methods for interfacing with a DOM parser and obtaining a DOMorg.w3c.dom.Document
object. Implementing classes map these calls to DOM parser-specific calls, allowing any third-party parser to be used with JDOM.- Version:
- $Revision: 1.22 $, $Date: 2007/11/10 05:28:59 $
- Author:
- Brett McLaughlin, Jason Hunter
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.w3c.dom.Document
createDocument()
This creates an emptyDocument
object based on a specific parser implementation.org.w3c.dom.Document
createDocument(DocType doctype)
This creates an emptyDocument
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 newDocument
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 newDocument
from an existingInputStream
by letting a DOM parser handle parsing using the supplied stream.
-
-
-
Method Detail
-
getDocument
org.w3c.dom.Document getDocument(java.io.File filename, boolean validate) throws java.io.IOException, JDOMException
This creates a newDocument
from a given filename by letting a DOM parser handle parsing from the file.- Parameters:
filename
- file to parse.validate
-boolean
to indicate if validation should occur.- Returns:
Document
- instance ready for use.- Throws:
java.io.IOException
- when I/O error occurs.JDOMException
- when errors occur in parsing.
-
getDocument
org.w3c.dom.Document getDocument(java.io.InputStream in, boolean validate) throws java.io.IOException, JDOMException
This creates a newDocument
from an existingInputStream
by letting a DOM parser handle parsing using the supplied stream.- Parameters:
in
-InputStream
to parse.validate
-boolean
to indicate if validation should occur.- Returns:
Document
- instance ready for use.- Throws:
java.io.IOException
- when I/O error occurs.JDOMException
- when errors occur in parsing.
-
createDocument
org.w3c.dom.Document createDocument() throws JDOMException
This creates an emptyDocument
object based on a specific parser implementation.- Returns:
Document
- created DOM Document.- Throws:
JDOMException
- when errors occur.
-
createDocument
org.w3c.dom.Document createDocument(DocType doctype) throws JDOMException
This creates an emptyDocument
object based on a specific parser implementation with the given DOCTYPE.- Parameters:
doctype
- InitialDocType
of the document.- Returns:
Document
- created DOM Document.- Throws:
JDOMException
- when errors occur.
-
-