org.jfree.ui.tabbedui

Class TabbedDialog


public class TabbedDialog
extends JDialog

A JDialog implementation that uses a tabbed UI as backend.
Author:
Thomas Morgner

Constructor Summary

TabbedDialog()
Default constructor.
TabbedDialog(Dialog owner)
Creates a new dialog.
TabbedDialog(Dialog owner, String title)
Creates a new dialog.
TabbedDialog(Dialog owner, String title, boolean modal)
Creates a new dialog.
TabbedDialog(Dialog owner, boolean modal)
Creates a new dialog.
TabbedDialog(Frame owner)
Creates a new dialog.
TabbedDialog(Frame owner, String title)
Creates a new dialog.
TabbedDialog(Frame owner, String title, boolean modal)
Creates a new dialog.
TabbedDialog(Frame owner, boolean modal)
Creates a new dialog.

Method Summary

protected AbstractTabbedUI
getTabbedUI()
Returns the UI implementation for the dialog.
void
init(AbstractTabbedUI tabbedUI)
Initialises the dialog.

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,
                    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(Dialog owner,
                    boolean modal)
Creates a new dialog.
Parameters:
owner - the owner.
modal - modal dialog?

TabbedDialog

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

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?

TabbedDialog

public TabbedDialog(Frame owner,
                    boolean modal)
Creates a new dialog.
Parameters:
owner - the owner.
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.