All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface org.w3c.dom.Node

public interface Node

Method Index

 o getChildren()
 o getFirstChild()
 o getNextSibling()
 o getNodeType()
 o getParentNode()
 o getPreviousSibling()
 o hasChildren()
 o insertBefore(Node, Node)
 o removeChild(Node)
 o replaceChild(Node, Node)

Methods

 o getNodeType
 public abstract int getNodeType()
 o getParentNode
 public abstract Node getParentNode()
 o getChildren
 public abstract NodeList getChildren()
 o hasChildren
 public abstract boolean hasChildren()
 o getFirstChild
 public abstract Node getFirstChild()
 o getPreviousSibling
 public abstract Node getPreviousSibling()
 o getNextSibling
 public abstract Node getNextSibling()
 o insertBefore
 public abstract void insertBefore(Node newChild,
                                   Node refChild) throws NotMyChildException
 o replaceChild
 public abstract Node replaceChild(Node oldChild,
                                   Node newChild) throws NotMyChildException
 o removeChild
 public abstract Node removeChild(Node oldChild) throws NotMyChildException

All Packages  Class Hierarchy  This Package  Previous  Next  Index