Builds a Node class minidom from data parsed to it. This class used
for two purposes:
You do not need to use this class directly if you do not designing
your own XML handler.
|
__init__(self,
data=None,
initial_node=None)
Takes two optional parameters: "data" and
"initial_node". |
source code
|
|
|
|
|
destroy(self)
Method used to allow class instance to be garbage-collected. |
source code
|
|
|
|
|
|
|
|
|
|
|
DEBUG(self,
level,
text,
comment=None)
Gets all NodeBuilder walking events. |
source code
|
|
|
|
|
dispatch(self,
stanza)
Gets called when the NodeBuilder reaches some level of depth on it's
way up with the built node as argument. |
source code
|
|
|
stream_header_received(self,
ns,
tag,
attrs)
Method called when stream just opened. |
source code
|
|
|
stream_footer_received(self)
Method called when stream just closed. |
source code
|
|
|
has_received_endtag(self,
level=0)
Return True if at least one end tag was seen (at level) |
source code
|
|
|
|
|
|