Interface ConfirmCallback.Params
- Enclosing interface:
- ConfirmCallback
public static interface ConfirmCallback.Params
The parameters of the
ConfirmCallback
.-
Method Summary
Modifier and TypeMethodDescriptiondefault String
Returns a string that represents the localized text of the "Cancel" action.default String
message()
Returns a string that represents the text passed to thewindow.confirm()
JavaScript function.default String
Returns a string that represents the localized text of the "OK" action.default String
title()
Returns a string that represents the localized dialog title.default String
url()
Returns a string that represents the URL of the web page that requested to display a confirmation dialog.
-
Method Details
-
title
Returns a string that represents the localized dialog title. -
message
Returns a string that represents the text passed to thewindow.confirm()
JavaScript function. -
okActionText
Returns a string that represents the localized text of the "OK" action. -
cancelActionText
Returns a string that represents the localized text of the "Cancel" action. -
url
Returns a string that represents the URL of the web page that requested to display a confirmation dialog.
-