|
|||||||||
PREV NEXT | FRAMES NO FRAMES |
newChild
to the end of the list of children of
this node.
Attr
interface represents an attribute in an
Element
object.Typically the allowable values for the
attribute are defined in a documenttype definition.CharacterData
interface extends Node with a set of
attributes and methods for accessing character data in the DOM.<!--
' and ending '-->
'.Attr
of the given name.
CDATASection
node whose value is the specified
string.
Comment
node given the specified string.
DocumentFragment
object.
ProcessingInstruction
node given the specified
name and data strings.
Text
node given the specified string.
DigestFilter
instance.
DigestFilter instance in `enable' mode.
- DigestFilter(NamespaceDocumentHandler) -
Constructor for class com.ibm.xml.sax.DigestFilter
- Creates a
DigestFilter
instance.
- Document - interface org.w3c.dom.Document.
- The
Document
interface represents the entire HTML or XML
document. - DOCUMENT_FRAGMENT_NODE -
Static variable in interface org.w3c.dom.Node
-
- DOCUMENT_NODE -
Static variable in interface org.w3c.dom.Node
-
- DOCUMENT_TYPE_NODE -
Static variable in interface org.w3c.dom.Node
-
- DocumentFragment - interface org.w3c.dom.DocumentFragment.
DocumentFragment
is a "lightweight" or "minimal"
Document
object.- DocumentHandler - interface org.xml.sax.DocumentHandler.
- Receive notification of general document events.
- DocumentType - interface org.w3c.dom.DocumentType.
- Each
Document
has a doctype
attribute whose value
is either null
or a DocumentType
object. - DOMDuplicator - class com.ibm.dom.util.DOMDuplicator.
- This class will be removed after W3C DOM Level 2 is published.
- DOMDuplicator() -
Constructor for class com.ibm.dom.util.DOMDuplicator
-
- DOMException - exception org.w3c.dom.DOMException.
- DOM operations only raise exceptions in "exceptional" circumstances, i.e.,
when an operation is impossible to perform (either for logical reasons,
because data is lost, or because the implementation has become unstable).
- DOMException(short, String) -
Constructor for class org.w3c.dom.DOMException
-
- DOMImplementation - interface org.w3c.dom.DOMImplementation.
- The
DOMImplementation
interface provides a number of methods
for performing operations that are independent of any particular instance
of the document object model. - DOMSTRING_SIZE_ERR -
Static variable in class org.w3c.dom.DOMException
-
- DTDHandler - interface org.xml.sax.DTDHandler.
- Receive notification of basic DTD-related events.
- dx -
Variable in class com.ibm.dom.util.PrintNodeTreeVisitor
-
Element
nodes.EntityReference
objects may be inserted into the structure
model when an entity reference is in the source document, or when the user
wishes to insert an entity reference.&, <, >,
, and UTF-16 surrogates for the set of entitiy references
(&, <, >
) and numeric character
references (&#...
) respectively.
&#xnn
.
Attr
node by name.
NamedNodeMap
containing the attributes of this node (if it
is an Element
) or null
otherwise.
NodeList
that contains all children of this node.
DocumentType
) associated
with this document.
NodeList
of all descendant elements with a given
tag name, in the order in which they would be encountered in a preorder
traversal of the Element
tree.
NodeList
of all the Element
s with a
given tag name in the order in which they would be encountered in a
preorder traversal of the Document
tree.
NamedNodeMap
containing the general entities, both
external and internal, declared in the DTD.
DOMImplementation
object that handles this document.
data
and
the substringData
method below.
DOCTYPE
keyword.
NamedNodeMap
containing the notations declared in the
DTD.
Document
object associated with this node.
true
; otherwise, it is false
.
newChild
before the existing child node
refChild
.
index
th item in the map.
index
th item in the collection.
NamedNodeMap
interface are used to
represent collections of nodes that can be accessed by name.Node
interface is the primary datatype for the entire
Document Object Model.NodeList
interface provides the abstraction of an ordered
collection of nodes, without defining or constraining how this collection
is implemented.Text
nodes in the full depth of the sub-tree
underneath this Element
into a "normal" form where only
markup (e.g., tags, comments, processing instructions, CDATA sections,
and entity references) separates Text
nodes, i.e., there
are no adjacent Text
nodes.
ProcessingInstruction
interface represents a "processing
instruction", used in XML as a way to keep processor-specific information
in the text of the document.oldChild
from the list
of children, and returns it.
oldChild
with newChild
in the list of children, and returns the oldChild
node.
nodeName
attribute.
Text
node into two Text nodes at the specified
offset, keeping both in the tree as siblings.
Text
interface represents the textual content (termed
character data in XML) of an Element
or Attr
.
|
|||||||||
PREV NEXT | FRAMES NO FRAMES |