public static interface MessageDialogPresenter.MyView
extends com.gwtplatform.mvp.client.View
| Modifier and Type | Method and Description |
|---|---|
void |
onReveal()
Called when the view is about to be revealed.
|
void |
show(java.lang.String title,
java.lang.String message,
org.gwtbootstrap3.client.ui.constants.IconType icon,
java.lang.String[] buttonLabels,
org.gwtbootstrap3.client.ui.constants.ButtonType[] buttonTypes,
java.util.function.Consumer<java.lang.Integer> closeCallback)
Shows the modal dialog according to the supplied arguments.
|
void onReveal()
void show(java.lang.String title,
java.lang.String message,
org.gwtbootstrap3.client.ui.constants.IconType icon,
java.lang.String[] buttonLabels,
org.gwtbootstrap3.client.ui.constants.ButtonType[] buttonTypes,
java.util.function.Consumer<java.lang.Integer> closeCallback)
title - Modal dialog title.message - The dialog message.icon - The dialog icon.buttonLabels - Button labels.buttonTypes - Button types.closeCallback - Close callback called when the dialog is dismissed.