Package org.cef.callback
Interface CefBeforeDownloadCallback
-
public interface CefBeforeDownloadCallbackCallback interface used to asynchronously continue a download.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidContinue(java.lang.String downloadPath, boolean showDialog)Call to continue the download.
-
-
-
Method Detail
-
Continue
void Continue(java.lang.String downloadPath, boolean showDialog)Call to continue the download.- Parameters:
downloadPath- Set it to the full file path for the download including the file name or leave blank to use the suggested name and the default temp directory.showDialog- Set it to true if you do wish to show the default "Save As" dialog.
-
-