(self, child_, node, nodeName_, fromsubclass_=False)
| 1868 | def buildAttributes(self, node, attrs, already_processed): |
| 1869 | super(RelatedIndicatorsType, self).buildAttributes(node, attrs, already_processed) |
| 1870 | def buildChildren(self, child_, node, nodeName_, fromsubclass_=False): |
| 1871 | if nodeName_ == 'Related_Indicator': |
| 1872 | obj_ = stix_common_binding.RelatedIndicatorType.factory() |
| 1873 | obj_.build(child_) |
| 1874 | self.Related_Indicator.append(obj_) |
| 1875 | super(RelatedIndicatorsType, self).buildChildren(child_, node, nodeName_, True) |
| 1876 | # end class RelatedIndicatorsType |
| 1877 | |
| 1878 | class RelatedObservablesType(stix_common_binding.GenericRelationshipListType): |
no test coverage detected