* Returns the tag of the UI5 Element * @public
()
| 112 | * @public |
| 113 | */ |
| 114 | getTag(): string { |
| 115 | const pureTag = this.metadata.tag; |
| 116 | |
| 117 | if (!pureTag) { |
| 118 | return ""; |
| 119 | } |
| 120 | |
| 121 | const suffix = getEffectiveScopingSuffixForTag(pureTag); |
| 122 | if (!suffix) { |
| 123 | return pureTag; |
| 124 | } |
| 125 | |
| 126 | return `${pureTag}-${suffix}`; |
| 127 | } |
| 128 | |
| 129 | /** |
| 130 | * Determines whether a property should have an attribute counterpart |
no test coverage detected