Java   View all facts   Glossary   Help
user interface component > window > dialog > modal dialog
Next dialognon-modal dialog    Updialog

modal dialog
subjectfact 
modal dialoghas definition A dialog that the user must dismiss before interacting with any other window. While in the modal dialog, the system is in a very restrictive modesource: Object Oriented Software Engineering by Lethbridge and Laganière, 2001-10-19 11:37:26.0
is a subtopic of Graphical User Interfaces2001-10-19 11:37:26.0
is a kind of dialogsource: Object Oriented Software Engineering by Lethbridge and Laganière, 2001-10-19 11:37:26.0
windowto display you define a subclass of the JFrame class by instantiating the following pattern, and create a new instance of that subclass
import java.awt.swing.*;
class subclassName extends JFrame {
subclassName (String title) {
super(title);
setSize(width, height):
show();
}
}
2001-10-19 11:38:17.0