use of org.kie.workbench.common.workbench.client.error.TimeAmount in project kie-wb-common by kiegroup.
the class GenericErrorPopup method onContinueButtonClicked.
@EventHandler("continue-button")
public void onContinueButtonClicked(final ClickEvent event) {
console.error(errorDetails.textContent);
if (doNotShowAgainCheckbox.checked) {
final TimeAmount duration = TimeAmount.valueOf(timeSelect.value);
genericErrorTimeController.setTimeout(duration);
}
close();
}
Aggregations