Package org.eclipse.rap.rwt.widgets
Class DialogUtil
java.lang.Object
org.eclipse.rap.rwt.widgets.DialogUtil
Deprecated.
Utility class to work with non-blocking dialogs.
- Since:
- 2.0
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionstatic void
open
(Dialog dialog, DialogCallback dialogCallback) Deprecated.UseDialog.open( DialogCallback )
instead
-
Method Details
-
open
Deprecated.UseDialog.open( DialogCallback )
insteadOpens the givendialog
in a non-blocking way and brings it to the front of the display. If given, thedialogCallback
is notified when the dialog is closed.Use this method instead of the
open()
method from the respectiveDialog
implementation when running in JEE_COMPATIBILITY mode.- Parameters:
dialog
- the dialog to open, must not benull
.dialogCallback
- the callback to be notified when the dialog was closed ornull
if no callback should be notified.- See Also:
-
Dialog
instead