Contents | Package | Class | Tree | Deprecated | Index | Help XML for Java 1.0.4
PREV | NEXT SHOW LISTS | HIDE LISTS

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

Field Summary
static int  ATTRIBUTE
 
static int  COMMENT
 
static int  DOCUMENT
 
static int  ELEMENT
 
static int  PI
 
static int  TEXT
 
 

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

Field Detail

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
Method Detail

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)

Contents | Package | Class | Tree | Deprecated | Index | Help
PREV | NEXT SHOW LISTS | HIDE LISTS