Interface Dialogs.HasModal<T>

Type Parameters:
T - return type of fluent API methods
All Known Subinterfaces:
Dialogs.MessageDialogBuilder
All Known Implementing Classes:
DialogsImpl.MessageDialogBuilderImpl
Enclosing interface:
Dialogs

public static interface Dialogs.HasModal<T>
Marker interface for Dialog Builders that have modal setting.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
     
    withModal(boolean modal)
    Sets whether component will open modal or modeless dialog.
  • Method Details

    • withModal

      T withModal(boolean modal)
      Sets whether component will open modal or modeless dialog.
      Parameters:
      modal - false to enable dialog to open as modeless modal, true otherwise.
      Returns:
      builder
    • isModal

      boolean isModal()
      Returns:
      true if modal dialog, false otherwise.