(self, child_, node, nodeName_, fromsubclass_=False)
| 355 | def buildAttributes(self, node, attrs, already_processed): |
| 356 | pass |
| 357 | def buildChildren(self, child_, node, nodeName_, fromsubclass_=False): |
| 358 | if nodeName_ == 'Incident': |
| 359 | from . import incident |
| 360 | obj_ = lookup_extension(child_, common_binding.IncidentBaseType).factory() |
| 361 | obj_.build(child_) |
| 362 | self.Incident.append(obj_) |
| 363 | # end class IncidentsType |
| 364 | |
| 365 | class CoursesOfActionType(GeneratedsSuper): |
no test coverage detected