Interface PreserveDeletePopup
-
- All Known Implementing Classes:
PreserveDeletePopupView
public interface PreserveDeletePopup
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfacePreserveDeletePopup.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 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-
-
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.
-
-