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

window
subjectfact 
windowis a subtopic of Graphical User Interfaces2001-10-19 11:38:17.0
is a kind of user interface componentsource: Object Oriented Software Engineering by Lethbridge and Laganière, 2001-10-19 11:38:17.0
to 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();
}
}
added by: JK, source: On To Java, 2001-10-19 11:38:17.0

Kinds of window :