()
| 414 | } |
| 415 | |
| 416 | onBeforeRendering() { |
| 417 | if (this.value) { |
| 418 | this.value = this.normalizeValue(this.value) || this.value; |
| 419 | } |
| 420 | |
| 421 | this.tempValue = this.value && this.isValid(this.value) ? this.value : this.getFormat().format(UI5Date.getInstance()); |
| 422 | } |
| 423 | |
| 424 | get roleDescription() { |
| 425 | return TimePicker.i18nBundle.getText(TIMEPICKER_INPUT_DESCRIPTION); |
nothing calls this directly
no test coverage detected