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

non-modal dialog
subjectfact 
non-modal dialoghas definition A separate window that the user can choose to interact with, but does not have tosource: Object Oriented Software Engineering by Lethbridge and Laganière, 2001-10-19 11:37:30.0
is a subtopic of Graphical User Interfaces2001-10-19 11:37:30.0
is a kind of dialogsource: Object Oriented Software Engineering by Lethbridge and Laganière, 2001-10-19 11:37:30.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