Fully-qualified identifier used for this element in the generated XML.
(self)
| 360 | |
| 361 | @property |
| 362 | def full_identifier(self): |
| 363 | """Fully-qualified identifier used for this element in the generated XML.""" |
| 364 | if self.namescope.revision > self._cached_revision: |
| 365 | self._cached_full_identifier = self.prefixed_identifier( |
| 366 | prefix_root=self.namescope.root) |
| 367 | self._cached_revision = self.namescope.revision |
| 368 | return self._cached_full_identifier |
| 369 | |
| 370 | @property |
| 371 | def _default_identifier(self): |
nothing calls this directly
no test coverage detected