All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface org.w3c.dom.Node

public interface Node

Variable Index

 o ATTRIBUTE
 o COMMENT
 o DOCUMENT
 o ELEMENT
 o PI
 o TEXT

Method Index

 o getChildNodes()
 o getFirstChild()
 o getNextSibling()
 o getNodeType()
 o getParentNode()
 o getPreviousSibling()
 o hasChildNodes()
 o insertBefore(Node, Node)
 o removeChild(Node)
 o replaceChild(Node, Node)

Variables

 o DOCUMENT
 public static final int DOCUMENT
 o ELEMENT
 public static final int ELEMENT
 o ATTRIBUTE
 public static final int ATTRIBUTE
 o PI
 public static final int PI
 o COMMENT
 public static final int COMMENT
 o TEXT
 public static final int TEXT

Methods

 o getNodeType
 public abstract int getNodeType()
 o getParentNode
 public abstract Node getParentNode()
 o getChildNodes
 public abstract NodeIterator getChildNodes()
 o hasChildNodes
 public abstract boolean hasChildNodes()
 o getFirstChild
 public abstract Node getFirstChild()
 o getPreviousSibling
 public abstract Node getPreviousSibling()
 o getNextSibling
 public abstract Node getNextSibling()
 o insertBefore
 public abstract Node insertBefore(Node newChild,
                                   Node refChild)
 o replaceChild
 public abstract Node replaceChild(Node newChild,
                                   Node oldChild)
 o removeChild
 public abstract Node removeChild(Node oldChild)

All Packages  Class Hierarchy  This Package  Previous  Next  Index