()
| 705 | } |
| 706 | |
| 707 | formAssociatedCallback() { |
| 708 | const ctor = this.constructor as typeof UI5Element; |
| 709 | |
| 710 | if (!ctor.getMetadata().isFormAssociated()) { |
| 711 | return; |
| 712 | } |
| 713 | |
| 714 | updateFormValue(this); |
| 715 | } |
| 716 | |
| 717 | static get formAssociated() { |
| 718 | return this.getMetadata().isFormAssociated(); |
nothing calls this directly
no test coverage detected
searching dependent graphs…