Java   View all facts   Glossary   Help
user interface component
Next kbTopvalue    UpkbTop    Previous kbTopuser interface   

user interface component comparison table
Subject be display you
AWT componentsimpler than Java Beans or Swing components but more limited 
button  
input field  
Java Bean  
menu  
progress bar  
scroll bar  
Swing component  
window 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();
}
}

Next kbTopvalue    UpkbTop    Previous kbTopuser interface