Class TabbedDialog

All Implemented Interfaces:
ImageObserver, MenuContainer, Serializable, Accessible, RootPaneContainer, WindowConstants

public class TabbedDialog extends JDialog
A JDialog implementation that uses a tabbed UI as backend.
Author:
Thomas Morgner
See Also:
  • Constructor Details

    • TabbedDialog

      public TabbedDialog()
      Default constructor.
    • TabbedDialog

      public TabbedDialog(Dialog owner)
      Creates a new dialog.
      Parameters:
      owner - the owner.
    • TabbedDialog

      public TabbedDialog(Dialog owner, boolean modal)
      Creates a new dialog.
      Parameters:
      owner - the owner.
      modal - modal dialog?
    • TabbedDialog

      public TabbedDialog(Dialog owner, String title)
      Creates a new dialog.
      Parameters:
      owner - the owner.
      title - the dialog title.
    • TabbedDialog

      public TabbedDialog(Dialog owner, String title, boolean modal)
      Creates a new dialog.
      Parameters:
      owner - the owner.
      title - the dialog title.
      modal - modal dialog?
    • TabbedDialog

      public TabbedDialog(Frame owner)
      Creates a new dialog.
      Parameters:
      owner - the owner.
    • TabbedDialog

      public TabbedDialog(Frame owner, boolean modal)
      Creates a new dialog.
      Parameters:
      owner - the owner.
      modal - modal dialog?
    • TabbedDialog

      public TabbedDialog(Frame owner, String title)
      Creates a new dialog.
      Parameters:
      owner - the owner.
      title - the dialog title.
    • TabbedDialog

      public TabbedDialog(Frame owner, String title, boolean modal)
      Creates a new dialog.
      Parameters:
      owner - the owner.
      title - the dialog title.
      modal - modal dialog?
  • Method Details

    • getTabbedUI

      protected final AbstractTabbedUI getTabbedUI()
      Returns the UI implementation for the dialog.
      Returns:
      Returns the tabbedUI.
    • init

      public void init(AbstractTabbedUI tabbedUI)
      Initialises the dialog.
      Parameters:
      tabbedUI - the UI that controls the dialog.