Frames | No Frames |
Methods which throw type org.jdom.JDOMException | |
org.w3c.dom.Attr |
This converts the JDOM Attribute parameter to a
DOM Attr , returning the DOM version. |
org.w3c.dom.Attr | |
org.w3c.dom.Document |
This converts the JDOM Document parameter to a
DOM Document, returning the DOM version. |
void |
This will output the JDOM Document , firing off the
SAX events that have been registered. |
org.w3c.dom.Element |
This converts the JDOM Element parameter to a
DOM Element, returning the DOM version. |
org.w3c.dom.Element | DOMOutputter.output(Element element, org.w3c.dom.Document domDoc, org.jdom.output.NamespaceStack namespaces) |
Classes derived from org.jdom.JDOMException | |
class | DataConversionException
is thrown when a requested XML value
is requested to be converted, and conversion
fails. |
Methods which throw type org.jdom.JDOMException | |
Document | DOMBuilder.build(File file)
This builds a document from the supplied
filename by constructing a DOM tree and reading information from the
DOM to create a JDOM document, a slower approach than SAXBuilder but
useful for debugging. |
Document | SAXBuilder.build(File file)
This builds a document from the supplied
filename. |
Document | SAXBuilder.build(InputSource in)
This builds a document from the supplied
input source. |
Document | DOMBuilder.build(InputStream in)
This builds a document from the supplied
input stream by constructing a DOM tree and reading information from
the DOM to create a JDOM document, a slower approach than SAXBuilder
but useful for debugging. |
Document | SAXBuilder.build(InputStream in)
This builds a document from the supplied
input stream. |
Document | SAXBuilder.build(InputStream in, String systemId)
This builds a document from the supplied
input stream. |
Document | SAXBuilder.build(Reader characterStream)
This builds a document from the supplied
Reader. |
Document | SAXBuilder.build(Reader characterStream, String SystemId)
This builds a document from the supplied
Reader. |
Document | SAXBuilder.build(String systemId)
This builds a document from the supplied
URI. |
Document | DOMBuilder.build(URL url)
This builds a document from the supplied
URL by constructing a DOM tree and reading information from the
DOM to create a JDOM document, a slower approach than SAXBuilder but
useful for debugging. |
Document | SAXBuilder.build(URL url)
This builds a document from the supplied
URL. |