(self, child_, node, nodeName_, fromsubclass_=False)
| 707 | def buildAttributes(self, node, attrs, already_processed): |
| 708 | pass |
| 709 | def buildChildren(self, child_, node, nodeName_, fromsubclass_=False): |
| 710 | if nodeName_ == 'Exploit': |
| 711 | obj_ = ExploitType.factory() |
| 712 | obj_.build(child_) |
| 713 | self.Exploit.append(obj_) |
| 714 | # end class ExploitsType |
| 715 | |
| 716 | class MalwareType(GeneratedsSuper): |