(widget: WidgetInfo)
| 530 | } |
| 531 | |
| 532 | public getBoolValue(widget: WidgetInfo): boolean | undefined { |
| 533 | const state = this.getWidgetState(widget) |
| 534 | if (notNullOrUndefined(state) && state.value === "boolValue") { |
| 535 | return state.boolValue as boolean |
| 536 | } |
| 537 | |
| 538 | return undefined |
| 539 | } |
| 540 | |
| 541 | public setBoolValue( |
| 542 | widget: WidgetInfo, |
no test coverage detected