Interface org.w3c.dom.Node
- Subinterfaces:
- Attribute, AttributeDefinition, Comment, DocumentFragment, DocumentType, Element, ElementDefinition, ElementToken, ModelGroup, Notation, PCDATAToken, PI, Text
- Implementing Classes:
- Child
- public interface 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 int getNodeType()
getParentNode
public Node getParentNode()
getChildNodes
public NodeIterator getChildNodes()
hasChildNodes
public boolean hasChildNodes()
getFirstChild
public Node getFirstChild()
getPreviousSibling
public Node getPreviousSibling()
getNextSibling
public Node getNextSibling()
insertBefore
public Node insertBefore(Node newChild,
Node refChild)
replaceChild
public Node replaceChild(Node newChild,
Node oldChild)
removeChild
public Node removeChild(Node oldChild)