(self, node)
| 202 | for Indicator_ in self.Indicator: |
| 203 | Indicator_.export(lwrite, level, nsmap, namespace_, name_='Indicator', pretty_print=pretty_print) |
| 204 | def build(self, node): |
| 205 | self.__sourcenode__ = node |
| 206 | already_processed = set() |
| 207 | self.buildAttributes(node, node.attrib, already_processed) |
| 208 | for child in node: |
| 209 | nodeName_ = Tag_pattern_.match(child.tag).groups()[-1] |
| 210 | self.buildChildren(child, node, nodeName_) |
| 211 | def buildAttributes(self, node, attrs, already_processed): |
| 212 | pass |
| 213 | def buildChildren(self, child_, node, nodeName_, fromsubclass_=False): |
nothing calls this directly
no test coverage detected