Interface YesNoConfirmPopup
-
- All Known Implementing Classes:
YesNoConfirmPopupView
public interface YesNoConfirmPopup
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceYesNoConfirmPopup.Presenter
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.jboss.errai.common.client.dom.HTMLElementgetElement()voidhide()Makes this popup container(and the main content along with it) invisible.voidshow(String title, String yesButtonText, String noButtonText, String confirmMessage, org.uberfire.mvp.Command yesCommand, org.uberfire.mvp.Command noCommand)Makes the YesNoConfirmPopupView visible with YES/NO/Cancel buttons.voidshow(String title, String okButtonText, String confirmMessage, org.uberfire.mvp.Command okCommand)Makes the YesNoConfirmPopupView visible with OK/Cancel buttons.voidshow(String title, String inlineNotificationMessage, org.uberfire.client.views.pfly.widgets.InlineNotification.InlineNotificationType inlineNotificationType, String yesButtonText, String noButtonText, org.uberfire.client.views.pfly.widgets.Button.ButtonStyleType yesButtonType, org.uberfire.client.views.pfly.widgets.Button.ButtonStyleType noButtonType, String confirmMessage, org.uberfire.mvp.Command yesCommand, org.uberfire.mvp.Command noCommand)Makes the YesNoConfirmPopupView visible with YES/NO/Cancel buttons.voidshow(String title, String inlineNotificationMessage, org.uberfire.client.views.pfly.widgets.InlineNotification.InlineNotificationType inlineNotificationType, String okButtonText, org.uberfire.client.views.pfly.widgets.Button.ButtonStyleType okButtonType, String confirmMessage, org.uberfire.mvp.Command okCommand)Makes the YesNoConfirmPopupView visible with OK/Cancel buttons.
-
-
-
Method Detail
-
show
void show(String title, String okButtonText, String confirmMessage, org.uberfire.mvp.Command okCommand)
Makes the YesNoConfirmPopupView visible with OK/Cancel buttons.- Parameters:
title-okButtonText-confirmMessage-okCommand-
-
show
void show(String title, String inlineNotificationMessage, org.uberfire.client.views.pfly.widgets.InlineNotification.InlineNotificationType inlineNotificationType, String okButtonText, org.uberfire.client.views.pfly.widgets.Button.ButtonStyleType okButtonType, String confirmMessage, org.uberfire.mvp.Command okCommand)
Makes the YesNoConfirmPopupView visible with OK/Cancel buttons.- Parameters:
title-inlineNotificationMessage-inlineNotificationType-okButtonText-okButtonType-confirmMessage-okCommand-
-
show
void show(String title, String yesButtonText, String noButtonText, String confirmMessage, org.uberfire.mvp.Command yesCommand, org.uberfire.mvp.Command noCommand)
Makes the YesNoConfirmPopupView visible with YES/NO/Cancel buttons.- Parameters:
title-yesButtonText-noButtonText-confirmMessage-yesCommand-noCommand-
-
show
void show(String title, String inlineNotificationMessage, org.uberfire.client.views.pfly.widgets.InlineNotification.InlineNotificationType inlineNotificationType, String yesButtonText, String noButtonText, org.uberfire.client.views.pfly.widgets.Button.ButtonStyleType yesButtonType, org.uberfire.client.views.pfly.widgets.Button.ButtonStyleType noButtonType, String confirmMessage, org.uberfire.mvp.Command yesCommand, org.uberfire.mvp.Command noCommand)
Makes the YesNoConfirmPopupView visible with YES/NO/Cancel buttons.- Parameters:
title-inlineNotificationMessage-inlineNotificationType-yesButtonText-noButtonText-yesButtonType-noButtonType-confirmMessage-yesCommand-noCommand-
-
getElement
org.jboss.errai.common.client.dom.HTMLElement getElement()
-
hide
void hide()
Makes this popup container(and the main content along with it) invisible. Has no effect if the popup is not already showing.
-
-