(self, prefix_root, **kwargs)
| 379 | return out_string |
| 380 | |
| 381 | def to_xml_string(self, prefix_root, **kwargs): |
| 382 | self._check_dead_reference() |
| 383 | if isinstance(self._value, base.Element): |
| 384 | return self._value.prefixed_identifier(prefix_root) |
| 385 | elif (self.reference_namespace == constants.DEFAULT |
| 386 | and self._name != constants.CHILDCLASS): |
| 387 | return self._defaults_string(prefix_root) |
| 388 | elif self._value: |
| 389 | return self._parent.namescope.full_prefix(prefix_root) + self._value |
| 390 | else: |
| 391 | return None |
| 392 | |
| 393 | |
| 394 | class BasePath(_Attribute): |
nothing calls this directly
no test coverage detected