Java   View all facts   Glossary   Help
user interface component > window
Next user interface componentAWT component    Upuser interface component    Previous user interface componentSwing component   

window comparison table
Subject is a kind of is a synonym of is a subtopic of display you has definition
dialogwindowdialog boxGraphical User Interfacesdefine 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();
}
}
A specific window with which a user can interact, but which is not the main UI window

Next user interface componentAWT component    Upuser interface component    Previous user interface componentSwing component