Package org.jdom


package org.jdom
Classes to represent the components of an XML document. The Verifier is a special class useful in ensuring well-formedness of documents. The Parent interface is implemented by Document and Element exposing their commonality. The Content abstract class is extended by all the node types of a document except Document itself. The JDOMFactory interface and DefaultJDOMFactory standard implementation provide advanced users with the ability to create subtypes of the org.jdom classes.
  • Class
    Description
    An XML attribute.
    An XML CDATA section.
    An XML comment.
    Superclass for JDOM objects which can be legal child content of Parent nodes.
    Thrown when a data conversion from a string to value type fails, such as can happen with the Attribute convenience getter functions.
    Creates the standard top-level JDOM classes (Element, Document, Comment, etc).
    An XML DOCTYPE declaration.
    An XML document.
    An XML element.
    An XML entity reference.
    Thrown when trying to add a illegal object to a JDOM construct.
    Thrown when illegal text is supplied to a JDOM construct.
    Thrown when a name is supplied in construction of a JDOM construct whose where the name breaks XML naming conventions.
    Thrown when a target is supplied in construction of a JDOM ProcessingInstruction, and that name breaks XML naming conventions.
    The top level exception that JDOM classes can throw.
    An interface to be used by builders when constructing JDOM objects.
    An XML namespace representation, as well as a factory for creating XML namespace objects.
    Superclass for JDOM objects which are allowed to contain Content content.
    An XML processing instruction.
    Character-based XML content.
    Special factory for building documents without any content or structure checking.
    A utility class to handle well-formedness checks on names, data, and other verification tasks for JDOM.