* Set a property value. * * @param {String} propertyName Name of the property to set * @param {*} value Value to set
(propertyName: string, value: any)
| 383 | * @param {*} value Value to set |
| 384 | */ |
| 385 | setProperty(propertyName: string, value: any): void { |
| 386 | const prop = this.findProperty(propertyName); |
| 387 | if (!prop) { |
| 388 | return; |
| 389 | } |
| 390 | |
| 391 | prop.setValue(value); |
| 392 | } |
| 393 | |
| 394 | /** |
| 395 | * Get an action. |
no test coverage detected