- JAXPDOMAdapter - Class in org.jdom.adapters
-
An adapter for any parser supporting the Sun JAXP APIs.
- JAXPDOMAdapter() - Constructor for class org.jdom.adapters.JAXPDOMAdapter
-
- JDOM_FEATURE - Static variable in class org.jdom.transform.JDOMResult
-
If TransformerFactory.getFeature(java.lang.String)
returns true
when passed this value as an
argument, the Transformer natively supports JDOM.
- JDOM_FEATURE - Static variable in class org.jdom.transform.JDOMSource
-
If TransformerFactory.getFeature(java.lang.String)
returns true
when passed this value as an
argument, the Transformer natively supports JDOM.
- JDOM_OBJECT_MODEL_URI - Static variable in class org.jdom.xpath.XPath
-
The string passable to the JAXP 1.3 XPathFactory isObjectModelSupported()
method to query an XPath engine regarding its support for JDOM.
- JDOMException - Exception in org.jdom
-
The top level exception that JDOM classes can throw.
- JDOMException() - Constructor for exception org.jdom.JDOMException
-
This will create an Exception
.
- JDOMException(String) - Constructor for exception org.jdom.JDOMException
-
This will create an Exception
with the given message.
- JDOMException(String, Throwable) - Constructor for exception org.jdom.JDOMException
-
This will create an Exception
with the given message
and wrap another Exception
.
- JDOMFactory - Interface in org.jdom
-
An interface to be used by builders when constructing JDOM objects.
- JDOMLocator - Class in org.jdom.output
-
An implementation of the SAX Locator
interface that
exposes the JDOM node being processed by SAXOutputter.
- JDOMParseException - Exception in org.jdom.input
-
Thrown during parse errors, with information about where the parse error
occurred as well as access to the partially built document.
- JDOMParseException(String, Throwable) - Constructor for exception org.jdom.input.JDOMParseException
-
This will create a parse Exception
with the given
message and wrap the Exception
that cause a document
parse to fail.
- JDOMParseException(String, Throwable, Document) - Constructor for exception org.jdom.input.JDOMParseException
-
This will create a parse Exception
with the given
message and the partial document and wrap the
Exception
that cause a document parse to fail.
- JDOMResult - Class in org.jdom.transform
-
A holder for an XSL Transformation result, generally a list of nodes
although it can be a JDOM Document also.
- JDOMResult() - Constructor for class org.jdom.transform.JDOMResult
-
Public default constructor.
- JDOMSource - Class in org.jdom.transform
-
A holder for an XML Transformation source: a Document, Element, or list of
nodes.
- JDOMSource(Document) - Constructor for class org.jdom.transform.JDOMSource
-
Creates a JDOM TrAX source wrapping a JDOM document.
- JDOMSource(List) - Constructor for class org.jdom.transform.JDOMSource
-
Creates a JDOM TrAX source wrapping a list of JDOM nodes.
- JDOMSource(Element) - Constructor for class org.jdom.transform.JDOMSource
-
Creates a JDOM TrAX source wrapping a JDOM element.
- JDOMSource(Document, EntityResolver) - Constructor for class org.jdom.transform.JDOMSource
-
Creates a JDOM TrAX source wrapping a JDOM element with an
associated EntityResolver to resolve external entities.