This is an acquisition-like wrapper that provides parent access for DOM sans circular references!
There are no implemented interfaces.
There are no attributes in this class.
getChildNodes(type=<type 'type'>, sts=(<type 'str'>, <type 'unicode'>))
Returns a NodeList that contains all children of this node. If there are no children, this is a empty NodeList
getFirstChild(type=<type 'type'>, sts=(<type 'str'>, <type 'unicode'>))
The first child of this node. If there is no such node this returns None
getLastChild(type=<type 'type'>, sts=(<type 'str'>, <type 'unicode'>))
The last child of this node. If there is no such node this returns None.
getNextSibling()
The node immediately preceding this node. If there is no such node, this returns None.
getOwnerDocument()
The Document object associated with this node, if any.
getParentNode()
The parent of this node. All nodes except Document DocumentFragment and Attr may have a parent
getPreviousSibling()
The node immediately preceding this node. If there is no such node, this returns None.
There are no known subclasses.