All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class hplb.xml.NodeImpl

java.lang.Object
   |
   +----hplb.xml.NodeImpl

public abstract class NodeImpl
extends Object
implements Node
Implements management of list of children.

Author:
Anders Kristensen

Variable Index

 o children
 o parent
 o type

Constructor Index

 o NodeImpl(int)

Method Index

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

Variables

 o type
 protected int type
 o parent
 protected NodeImpl parent
 o children
 protected NodeListImpl children

Constructors

 o NodeImpl
 public NodeImpl(int type)

Methods

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

All Packages  Class Hierarchy  This Package  Previous  Next  Index