(self, node)
| 115 | if self.Information_Source is not None: |
| 116 | self.Information_Source.export(lwrite, level, nsmap, namespace_, name_='Information_Source', pretty_print=pretty_print) |
| 117 | def build(self, node): |
| 118 | self.__sourcenode__ = node |
| 119 | already_processed = set() |
| 120 | self.buildAttributes(node, node.attrib, already_processed) |
| 121 | for child in node: |
| 122 | nodeName_ = Tag_pattern_.match(child.tag).groups()[-1] |
| 123 | self.buildChildren(child, node, nodeName_) |
| 124 | def buildAttributes(self, node, attrs, already_processed): |
| 125 | pass |
| 126 | def buildChildren(self, child_, node, nodeName_, fromsubclass_=False): |
nothing calls this directly
no test coverage detected