(self, node)
| 278 | for Short_Description in self.Short_Description: |
| 279 | Short_Description.export(lwrite, level, nsmap, namespace_, name_='Short_Description', pretty_print=pretty_print) |
| 280 | def build(self, node): |
| 281 | self.__sourcenode__ = node |
| 282 | already_processed = set() |
| 283 | self.buildAttributes(node, node.attrib, already_processed) |
| 284 | for child in node: |
| 285 | nodeName_ = Tag_pattern_.match(child.tag).groups()[-1] |
| 286 | self.buildChildren(child, node, nodeName_) |
| 287 | def buildAttributes(self, node, attrs, already_processed): |
| 288 | value = find_attr_value_('idref', node) |
| 289 | if value is not None and 'idref' not in already_processed: |
nothing calls this directly
no test coverage detected