- detach() - Method in class nu.xom.Namespace
-
Removes this namespace node from its parent.
- detach() - Method in class nu.xom.Node
-
Removes this node from its parent so that it can be added
to a different parent node or document.
- DocType - Class in nu.xom
-
Represents an XML document type declaration such as
<!DOCTYPE book SYSTEM "docbookx.dtd">
.
- DocType(String, String, String) - Constructor for class nu.xom.DocType
-
Creates a new document type declaration with a public ID
and a system ID.
- DocType(String, String) - Constructor for class nu.xom.DocType
-
Creates a new document type declaration with a system ID
but no public ID.
- DocType(String) - Constructor for class nu.xom.DocType
-
Creates a new document type declaration with
no public or system ID.
- DocType(DocType) - Constructor for class nu.xom.DocType
-
Creates a new DocType
that's a copy of its
argument.
- Document - Class in nu.xom
-
The Document
class represents
a complete XML document including its root element,
prolog, and epilog.
- Document(Element) - Constructor for class nu.xom.Document
-
Creates a new Document
object with the
specified root element.
- Document(Document) - Constructor for class nu.xom.Document
-
Creates a copy of this document.
- DOMConverter - Class in nu.xom.converters
-
Converts XOM Document
objects to and from DOM
Document
objects.