All Packages Class Hierarchy This Package Previous Next Index
Interface org.w3c.dom.Node
- public interface Node
-
getChildren()
-
-
getFirstChild()
-
-
getNextSibling()
-
-
getNodeType()
-
-
getParentNode()
-
-
getPreviousSibling()
-
-
hasChildren()
-
-
insertBefore(Node, Node)
-
-
removeChild(Node)
-
-
replaceChild(Node, Node)
-
getNodeType
public abstract int getNodeType()
getParentNode
public abstract Node getParentNode()
getChildren
public abstract NodeList getChildren()
hasChildren
public abstract boolean hasChildren()
getFirstChild
public abstract Node getFirstChild()
getPreviousSibling
public abstract Node getPreviousSibling()
getNextSibling
public abstract Node getNextSibling()
insertBefore
public abstract void insertBefore(Node newChild,
Node refChild) throws NotMyChildException
replaceChild
public abstract Node replaceChild(Node oldChild,
Node newChild) throws NotMyChildException
removeChild
public abstract Node removeChild(Node oldChild) throws NotMyChildException
All Packages Class Hierarchy This Package Previous Next Index