Class DialogUtil


  • @Deprecated
    public final class DialogUtil
    extends java.lang.Object
    Deprecated.
    Use the methods on Dialog instead
    Utility class to work with non-blocking dialogs.
    Since:
    2.0
    See Also:
    Dialog
    • Method Summary

      All Methods Static Methods Concrete Methods Deprecated Methods 
      Modifier and Type Method Description
      static void open​(Dialog dialog, DialogCallback dialogCallback)
      Deprecated.
      Use Dialog.open( DialogCallback ) instead
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • open

        @Deprecated
        public static void open​(Dialog dialog,
                                DialogCallback dialogCallback)
        Deprecated.
        Use Dialog.open( DialogCallback ) instead
        Opens the given dialog in a non-blocking way and brings it to the front of the display. If given, the dialogCallback is notified when the dialog is closed.

        Use this method instead of the open() method from the respective Dialog implementation when running in JEE_COMPATIBILITY mode.

        Parameters:
        dialog - the dialog to open, must not be null.
        dialogCallback - the callback to be notified when the dialog was closed or null if no callback should be notified.
        See Also:
        Dialog, DialogCallback, Application.OperationMode