(self)
| 339 | self._value = value |
| 340 | |
| 341 | def _before_clear(self): |
| 342 | if isinstance(self._value, base.Element): |
| 343 | if isinstance(self._reference_namespace, _Attribute): |
| 344 | self._reference_namespace._force_clear() # pylint: disable=protected-access |
| 345 | |
| 346 | def _defaults_string(self, prefix_root): |
| 347 | """Generates the XML string if this is a reference to a defaults class. |
nothing calls this directly
no test coverage detected