There are no implemented interfaces.
There are no attributes in this class.
getAttribute(name)
Retrieves an attribute value by name.
getAttributeNode(name)
Retrieves an Attr node by name or None if there is no such attribute.
getAttributes()
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
getChildren()
getColorizableTexts()
getElementsByTagName(tagname)
Returns a NodeList of all the Elements with a given tag name in the order in which they would be encountered in a preorder traversal of the Document tree. Parameter: tagname The name of the tag to match (* = all tags). Return Value: A new NodeList object containing all the matched Elements.
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.
getNodeName()
The name of this node, depending on its type
getNodeType()
A code representing the type of the node.
getNodeValue()
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.
getTagName()
The name of the element
hasChildNodes()
Returns true if the node has any children, false if it doesn't.
setColorizableTexts(v)
There are no known subclasses.