/ HappyDoc3-r3_1 / happydoclib / docstring / StructuredText / STDOM.py / ParentNode
A node that can have children, or, more precisely, that implements
the child access methods of the DOM.
Methods
|
|
|
getChildNodes
|
getChildNodes (
self,
type=type,
sts=StringTypes,
)
Returns a NodeList that contains all children of this node.
If there are no children, this is a empty NodeList
|
|
_get_FirstChild
|
_get_FirstChild (
self,
type=type,
sts=StringTypes,
)
|
|
getLastChild
|
getLastChild (
self,
type=type,
sts=StringTypes,
)
The last child of this node. If there is no such node
this returns None.
|
|
getFirstChild
|
getFirstChild (
self,
type=type,
sts=StringTypes,
)
The first child of this node. If there is no such node
this returns None
|
|
_get_LastChild
|
_get_LastChild (
self,
type=type,
sts=StringTypes,
)
|
|
_get_ChildNodes
|
_get_ChildNodes (
self,
type=type,
sts=StringTypes,
)
|
|
|