All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class java.awt.Panel

java.lang.Object
   |
   +----java.awt.Component
           |
           +----java.awt.Container
                   |
                   +----java.awt.Panel

public class Panel
extends Container
A Panel Container class. This produces a generic container.


Constructor Index

 o Panel()
Creates a new panel.
 o Panel(LayoutManager)
Creates a new panel with the specified layout manager.

Method Index

 o addNotify()
Creates the Panel's peer.

Constructors

 o Panel
 public Panel()
Creates a new panel. The default layout for all panels is FlowLayout.

 o Panel
 public Panel(LayoutManager layout)
Creates a new panel with the specified layout manager.

Parameters:
layout - the layout manager for this panel

Methods

 o addNotify
 public void addNotify()
Creates the Panel's peer. The peer allows you to modify the appearance of the panel without changing its functionality.

Overrides:
addNotify in class Container

All Packages  Class Hierarchy  This Package  Previous  Next  Index

Submit a bug or feature