com.sun.swingset3.demos.dialog.resources.DialogDemo.html Maven / Gradle / Ivy
Show how Swing's top-level GUI container,
JDialog,
can be used to build secondary windows, such as property sheets and wizards.
Dialogs can be either modal or modeless. Modal dialogs block input from other windows
in the application, thereby forcing the user to acknowledge the dialog before
interacting with other parts of the application. Modeless dialogs do not block input.
For more information on using JDialogs,
see The Java Tutorial: JDialog trail.