Site hosted by Angelfire.com: Build your free website today!
 

JFrame

java.lang.Object
  |
  +--java.awt.Component
        |
        +--java.awt.Container
              |
              +--java.awt.Window
                    |
                    +--java.awt.Frame
                          |
                          +--javax.swing.JFrame

A JFrame class, is a window that has decorations such as a border, a title, and buttons for closing and iconifying the window. Applications with a GUI typically use at least one frame.

Methods include: pack, setSize, setVisible, setTitle, and getTitle.

See: How to make Frames (Mains Windows)