(self, node)
| 1151 | self.Targeted_Technical_Details.export(lwrite, level, "%s:" % (nsmap[namespace_]), name_='Targeted_Technical_Details', pretty_print=pretty_print) |
| 1152 | |
| 1153 | def build(self, node): |
| 1154 | self.__sourcenode__ = node |
| 1155 | already_processed = set() |
| 1156 | self.buildAttributes(node, node.attrib, already_processed) |
| 1157 | for child in node: |
| 1158 | nodeName_ = Tag_pattern_.match(child.tag).groups()[-1] |
| 1159 | self.buildChildren(child, node, nodeName_) |
| 1160 | def buildAttributes(self, node, attrs, already_processed): |
| 1161 | pass |
| 1162 | def buildChildren(self, child_, node, nodeName_, fromsubclass_=False): |
nothing calls this directly
no test coverage detected