Interface AbstractScenarioPopup
-
- All Known Subinterfaces:
FileUploadPopup
- All Known Implementing Classes:
AbstractScenarioConfirmationPopupView,AbstractScenarioPopupView,ConfirmPopupView,DeletePopupView,FileUploadPopupView,PreserveDeletePopupView,ScenarioConfirmationPopupView
public interface AbstractScenarioPopup
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceAbstractScenarioPopup.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 okButtonText, org.uberfire.mvp.Command okCommand)Makes theScenarioPopupvisible with OK/Cancel buttons.
-
-
-
Method Detail
-
show
void show(String mainTitleText, String okButtonText, org.uberfire.mvp.Command okCommand)
Makes theScenarioPopupvisible with OK/Cancel buttons.- Parameters:
mainTitleText-okButtonText-okCommand-
-
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.
-
-