Interface FileUploadPopup.Presenter
-
- All Superinterfaces:
AbstractScenarioPopup.Presenter
- All Known Implementing Classes:
FileUploadPopupPresenter
- Enclosing interface:
- FileUploadPopup
public static interface FileUploadPopup.Presenter extends AbstractScenarioPopup.Presenter
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetFileContents()StringgetFileName()voidshow(List<String> acceptedExtension, String mainTitleText, String uploadWarningText, String okButtonText, org.uberfire.mvp.Command okCommand)Same as default show method but with list of accepted extensions and uploadWarningTextvoidshow(List<String> acceptedExtension, String mainTitleText, String okButtonText, org.uberfire.mvp.Command okCommand)Same as default show method but with list of accepted extensions-
Methods inherited from interface org.drools.workbench.screens.scenariosimulation.client.popup.AbstractScenarioPopup.Presenter
hide, show
-
-
-
-
Method Detail
-
show
void show(List<String> acceptedExtension, String mainTitleText, String okButtonText, org.uberfire.mvp.Command okCommand)
Same as default show method but with list of accepted extensions- Parameters:
acceptedExtension-mainTitleText-okButtonText-okCommand-
-
getFileContents
String getFileContents()
-
getFileName
String getFileName()
-
show
void show(List<String> acceptedExtension, String mainTitleText, String uploadWarningText, String okButtonText, org.uberfire.mvp.Command okCommand)
Same as default show method but with list of accepted extensions and uploadWarningText- Parameters:
acceptedExtension-mainTitleText-uploadWarningText-okButtonText-okCommand-
-
-