Interface PreserveDeletePopup.Presenter
-
- All Known Implementing Classes:
PreserveDeletePopupPresenter
- Enclosing interface:
- PreserveDeletePopup
public static interface PreserveDeletePopup.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 option1Text, String option2Text, String okPreserveButtonText, String okDeleteButtonText, org.uberfire.mvp.Command okPreserveCommand, org.uberfire.mvp.Command okDeleteCommand)Makes thePreserveDeletePopupvisible
-
-
-
Method Detail
-
show
void show(String mainTitleText, String mainQuestionText, String text1Text, String textQuestionText, String option1Text, String option2Text, String okPreserveButtonText, String okDeleteButtonText, org.uberfire.mvp.Command okPreserveCommand, org.uberfire.mvp.Command okDeleteCommand)
Makes thePreserveDeletePopupvisible- Parameters:
mainTitleText-mainQuestionText-text1Text-textQuestionText-option1Text-option2Text-okPreserveButtonText-okDeleteButtonText-okPreserveCommand-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.
-
-