(self, node)
| 1305 | if self.Journal_Entry is not None: |
| 1306 | self.Journal_Entry.export(lwrite, level, nsmap, namespace_, name_='Journal_Entry', pretty_print=pretty_print) |
| 1307 | def build(self, node): |
| 1308 | self.__sourcenode__ = node |
| 1309 | already_processed = set() |
| 1310 | self.buildAttributes(node, node.attrib, already_processed) |
| 1311 | for child in node: |
| 1312 | nodeName_ = Tag_pattern_.match(child.tag).groups()[-1] |
| 1313 | self.buildChildren(child, node, nodeName_) |
| 1314 | def buildAttributes(self, node, attrs, already_processed): |
| 1315 | pass |
| 1316 | def buildChildren(self, child_, node, nodeName_, fromsubclass_=False): |
nothing calls this directly
no test coverage detected