All Packages  Class Hierarchy

A B C D E F G H I J K L M N O P Q R S T U V W X Y Z

Index of all Fields and Methods

A

appendChild(Node). Method in interface org.w3c.dom.Node
Adds the node newChild to the end of the list of children of this node.
appendData(String). Method in interface org.w3c.dom.CharacterData
Append the string to the end of the character data of the node.
ATTRIBUTE_NODE. Static variable in interface org.w3c.dom.Node

C

CDATA_SECTION_NODE. Static variable in interface org.w3c.dom.Node
cloneNode(boolean). Method in interface org.w3c.dom.Node
Returns a duplicate of this node, i.e., serves as a generic copy constructor for nodes.
code. Variable in class org.w3c.dom.DOMException
COMMENT_NODE. Static variable in interface org.w3c.dom.Node
createAttribute(String). Method in interface org.w3c.dom.Document
Creates an Attr of the given name.
createCDATASection(String). Method in interface org.w3c.dom.Document
Creates a CDATASection node whose value is the specified string.
createComment(String). Method in interface org.w3c.dom.Document
Creates a Comment node given the specified string.
createDocumentFragment(). Method in interface org.w3c.dom.Document
Creates an empty DocumentFragment object.
createElement(String). Method in interface org.w3c.dom.Document
Creates an element of the type specified.
createEntityReference(String). Method in interface org.w3c.dom.Document
Creates an EntityReference object.
createProcessingInstruction(String, String). Method in interface org.w3c.dom.Document
Creates a ProcessingInstruction node given the specified name and data strings.
createTextNode(String). Method in interface org.w3c.dom.Document
Creates a Text node given the specified string.

D

deleteData(int, int). Method in interface org.w3c.dom.CharacterData
Remove a range of characters from the node.
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
DOMException(int, String). Constructor for class org.w3c.dom.DOMException
DOMSTRING_SIZE_ERR. Static variable in class org.w3c.dom.DOMException

E

ELEMENT_NODE. Static variable in interface org.w3c.dom.Node
ENTITY_NODE. Static variable in interface org.w3c.dom.Node
ENTITY_REFERENCE_NODE. Static variable in interface org.w3c.dom.Node

G

getAttribute(String). Method in interface org.w3c.dom.Element
Retrieves an attribute value by name.
getAttributeNode(String). Method in interface org.w3c.dom.Element
Retrieves an Attr node by name.
getAttributes(). Method in interface org.w3c.dom.Node
A NamedNodeMap containing the attributes of this node (if it is an Element) or null otherwise.
getChildNodes(). Method in interface org.w3c.dom.Node
A NodeList that contains all children of this node.
getData(). Method in interface org.w3c.dom.CharacterData
The character data of the node that implements this interface.
getData(). Method in interface org.w3c.dom.ProcessingInstruction
The content of this processing instruction.
getDoctype(). Method in interface org.w3c.dom.Document
The Document Type Declaration (see DocumentType) associated with this document.
getDocumentElement(). Method in interface org.w3c.dom.Document
This is a convenience attribute that allows direct access to the child node that is the root element of the document.
getElementsByTagName(String). Method in interface org.w3c.dom.Document
Returns a NodeList of all the Elements with a given tag name in the order in which they would be encountered in a preorder traversal of the Document tree.
getElementsByTagName(String). Method in interface org.w3c.dom.Element
Returns a 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.
getEntities(). Method in interface org.w3c.dom.DocumentType
A NamedNodeMap containing the general entities, both external and internal, declared in the DTD.
getFirstChild(). Method in interface org.w3c.dom.Node
The first child of this node.
getImplementation(). Method in interface org.w3c.dom.Document
The DOMImplementation object that handles this document.
getLastChild(). Method in interface org.w3c.dom.Node
The last child of this node.
getLength(). Method in interface org.w3c.dom.CharacterData
The number of characters that are available through data and the substringData method below.
getLength(). Method in interface org.w3c.dom.NamedNodeMap
The number of nodes in the map.
getLength(). Method in interface org.w3c.dom.NodeList
The number of nodes in the list.
getName(). Method in interface org.w3c.dom.Attr
Returns the name of this attribute.
getName(). Method in interface org.w3c.dom.DocumentType
The name of DTD; i.e., the name immediately following the DOCTYPE keyword.
getNamedItem(String). Method in interface org.w3c.dom.NamedNodeMap
Retrieves a node specified by name.
getNextSibling(). Method in interface org.w3c.dom.Node
The node immediately following this node.
getNodeName(). Method in interface org.w3c.dom.Node
The name of this node, dependind on its type; see the table above.
getNodeType(). Method in interface org.w3c.dom.Node
A code representing the type of the underlying object, as defined above.
getNodeValue(). Method in interface org.w3c.dom.Node
The value of this node depending on its type; see the table above.
getNotationName(). Method in interface org.w3c.dom.Entity
For unparsed entities, the name of the notation for the entity.
getNotations(). Method in interface org.w3c.dom.DocumentType
A NamedNodeMap containing the notations declared in the DTD.
getOwnerDocument(). Method in interface org.w3c.dom.Node
The Document object associated with this node.
getParentNode(). Method in interface org.w3c.dom.Node
The parent of this node.
getPreviousSibling(). Method in interface org.w3c.dom.Node
The node immediately preceding this node.
getPublicId(). Method in interface org.w3c.dom.Entity
The public identifier associated with the entity, if specified.
getPublicId(). Method in interface org.w3c.dom.Notation
The public identifier of this notation.
getSpecified(). Method in interface org.w3c.dom.Attr
If this attribute was explicitly given a value in the original document, this is true; otherwise, it is false.
getSystemId(). Method in interface org.w3c.dom.Entity
The system identifier associated with the entity, if specified.
getSystemId(). Method in interface org.w3c.dom.Notation
The system identifier of this notation.
getTagName(). Method in interface org.w3c.dom.Element
The name of the element.
getTarget(). Method in interface org.w3c.dom.ProcessingInstruction
The target of this processing instruction.
getValue(). Method in interface org.w3c.dom.Attr
On retrieval, the value of the attribute is returned as a string.

H

hasChildNodes(). Method in interface org.w3c.dom.Node
This is a convenience method to allow easy determination of whether a node has any children.
hasFeature(String, String). Method in interface org.w3c.dom.DOMImplementation
Test if the DOM implementation implements a specific feature.
HIERARCHY_REQUEST_ERR. Static variable in class org.w3c.dom.DOMException

I

INDEX_SIZE_ERR. Static variable in class org.w3c.dom.DOMException
insertBefore(Node, Node). Method in interface org.w3c.dom.Node
Inserts the node newChild before the existing child node refChild.
insertData(int, String). Method in interface org.w3c.dom.CharacterData
Insert a string at the specified character offset.
INUSE_ATTRIBUTE_ERR. Static variable in class org.w3c.dom.DOMException
INVALID_CHARACTER_ERR. Static variable in class org.w3c.dom.DOMException
item(int). Method in interface org.w3c.dom.NamedNodeMap
Returns the indexth item in the map.
item(int). Method in interface org.w3c.dom.NodeList
Returns the indexth item in the collection.

N

NO_DATA_ALLOWED_ERR. Static variable in class org.w3c.dom.DOMException
NO_MODIFICATION_ALLOWED_ERR. Static variable in class org.w3c.dom.DOMException
normalize(). Method in interface org.w3c.dom.Element
Puts all 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.
NOT_FOUND_ERR. Static variable in class org.w3c.dom.DOMException
NOT_SUPPORTED_ERR. Static variable in class org.w3c.dom.DOMException
NOTATION_NODE. Static variable in interface org.w3c.dom.Node

P

PROCESSING_INSTRUCTION_NODE. Static variable in interface org.w3c.dom.Node

R

removeAttribute(String). Method in interface org.w3c.dom.Element
Removes an attribute by name.
removeAttributeNode(Attr). Method in interface org.w3c.dom.Element
Removes the specified attribute.
removeChild(Node). Method in interface org.w3c.dom.Node
Removes the child node indicated by oldChild from the list of children, and returns it.
removeNamedItem(String). Method in interface org.w3c.dom.NamedNodeMap
Removes a node specified by name.
replaceChild(Node, Node). Method in interface org.w3c.dom.Node
Replaces the child node oldChild with newChild in the list of children, and returns the oldChild node.
replaceData(int, int, String). Method in interface org.w3c.dom.CharacterData
Replace the characters starting at the specified character offset with the specified string.

S

setAttribute(String, String). Method in interface org.w3c.dom.Element
Adds a new attribute.
setAttributeNode(Attr). Method in interface org.w3c.dom.Element
Adds a new attribute.
setData(String). Method in interface org.w3c.dom.CharacterData
setData(String). Method in interface org.w3c.dom.ProcessingInstruction
setNamedItem(Node). Method in interface org.w3c.dom.NamedNodeMap
Adds a node using its nodeName attribute.
setNodeValue(String). Method in interface org.w3c.dom.Node
setValue(String). Method in interface org.w3c.dom.Attr
splitText(int). Method in interface org.w3c.dom.Text
Breaks this Text node into two Text nodes at the specified offset, keeping both in the tree as siblings.
substringData(int, int). Method in interface org.w3c.dom.CharacterData
Extracts a range of data from the node.

T

TEXT_NODE. Static variable in interface org.w3c.dom.Node

W

WRONG_DOCUMENT_ERR. Static variable in class org.w3c.dom.DOMException