All Packages Class Hierarchy This Package Previous Next Index
Interface org.w3c.dom.Node
- public interface Node
-
ATTRIBUTE
-
-
COMMENT
-
-
DOCUMENT
-
-
ELEMENT
-
-
PI
-
-
TEXT
-
-
getChildNodes()
-
-
getFirstChild()
-
-
getNextSibling()
-
-
getNodeType()
-
-
getParentNode()
-
-
getPreviousSibling()
-
-
hasChildNodes()
-
-
insertBefore(Node, Node)
-
-
removeChild(Node)
-
-
replaceChild(Node, Node)
-
DOCUMENT
public static final int DOCUMENT
ELEMENT
public static final int ELEMENT
ATTRIBUTE
public static final int ATTRIBUTE
PI
public static final int PI
COMMENT
public static final int COMMENT
TEXT
public static final int TEXT
getNodeType
public abstract int getNodeType()
getParentNode
public abstract Node getParentNode()
getChildNodes
public abstract NodeIterator getChildNodes()
hasChildNodes
public abstract boolean hasChildNodes()
getFirstChild
public abstract Node getFirstChild()
getPreviousSibling
public abstract Node getPreviousSibling()
getNextSibling
public abstract Node getNextSibling()
insertBefore
public abstract Node insertBefore(Node newChild,
Node refChild)
replaceChild
public abstract Node replaceChild(Node newChild,
Node oldChild)
removeChild
public abstract Node removeChild(Node oldChild)
All Packages Class Hierarchy This Package Previous Next Index