Java   View all facts   Glossary   Help
user interface component > window > dialog
Upwindow

dialog
(dialog box)
subjectfact 
dialoghas definition A specific window with which a user can interact, but which is not the main UI windowsource: Object Oriented Software Engineering by Lethbridge and Laganière, 2001-10-19 11:36:37.0
is a subtopic of Graphical User Interfaces2001-10-19 11:36:37.0
is a kind of windowsource: Object Oriented Software Engineering by Lethbridge and Laganière, 2001-10-19 11:36:37.0
is a synonym of dialog box2001-10-19 11:36:37.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

Kinds of dialog :