| Package | Description |
|---|---|
| java.awt |
Contains all of the classes for creating user interfaces and for painting graphics and images.
|
| javax.swing |
Provides a set of "lightweight" (all-Java language) components that, to the maximum degree possible, work the same on all platforms.
|
| Modifier and Type | Class and Description |
|---|---|
class |
FileDialog
The
FileDialog class displays a dialog window from which the user can select a file.
|
| Modifier and Type | Method and Description |
|---|---|
protected abstract java |
Toolkit.createDialog(Dialog
Creates this toolkit's implementation of
Dialog using the specified peer interface.
|
| Constructor and Description | |
|---|---|
Dialog(Dialog
Constructs an initially invisible, modeless
Dialog with the specified owner
Dialog and an empty title.
|
|
Dialog(Dialog
Constructs an initially invisible, modeless
Dialog with the specified owner
Dialog and title.
|
|
Dialog(Dialog
Constructs an initially invisible
Dialog with the specified owner
Dialog, title, and modality.
|
|
Dialog(Dialog
Constructs an initially invisible
Dialog with the specified owner
Dialog, title, modality and
GraphicsConfiguration.
|
|
FileDialog(Dialog
Creates a file dialog for loading a file.
|
|
FileDialog(Dialog
Creates a file dialog window with the specified title for loading a file.
|
|
FileDialog(Dialog
Creates a file dialog window with the specified title for loading or saving a file.
|
| Modifier and Type | Class and Description |
|---|---|
class |
JDialog
The main class for creating a dialog window.
|
| Constructor and Description | |
|---|---|
JDialog(Dialog
Creates a modeless dialog with the specified
Dialog as its owner and an empty title.
|
|
JDialog(Dialog
Creates a dialog with an empty title and the specified modality and
Dialog as its owner.
|
|
JDialog(Dialog
Creates a modeless dialog with the specified title and with the specified owner dialog.
|
|
JDialog(Dialog
Creates a dialog with the specified title, modality and the specified owner
Dialog.
|
|
JDialog(Dialog
Creates a dialog with the specified title, owner
Dialog, modality and
GraphicsConfiguration.
|