Interface DeletePopup.Presenter
-
- All Known Implementing Classes:
DeletePopupPresenter
- Enclosing interface:
- DeletePopup
public static interface DeletePopup.Presenter
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidhide()Makes this popup container(and the main content along with it) invisible.voidshow(String mainTitleText, String mainQuestionText, String text1Text, String textQuestionText, String textDangerText, String okDeleteButtonText, org.uberfire.mvp.Command okDeleteCommand)Makes theDeletePopupvisible with OK/Cancel buttons.
-
-
-
Method Detail
-
show
void show(String mainTitleText, String mainQuestionText, String text1Text, String textQuestionText, String textDangerText, String okDeleteButtonText, org.uberfire.mvp.Command okDeleteCommand)
Makes theDeletePopupvisible with OK/Cancel buttons.- Parameters:
mainTitleText-mainQuestionText-text1Text-textQuestionText-textDangerText-okDeleteButtonText-okDeleteCommand-
-
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.
-
-