* Determines whether a property should have an attribute counterpart * @public * @param propName
(propName: string)
| 132 | * @param propName |
| 133 | */ |
| 134 | hasAttribute(propName: string): boolean { |
| 135 | const propData = this.getProperties()[propName]; |
| 136 | return !propData.noAttribute; |
| 137 | } |
| 138 | |
| 139 | /** |
| 140 | * Returns an array with the properties of the UI5 Element (in camelCase) |
no test coverage detected