home *** CD-ROM | disk | FTP | other *** search
- package java.awt;
-
- public class Panel extends Container {
- static final LayoutManager panelLayout = new FlowLayout();
-
- public Panel() {
- ((Container)this).setLayout(panelLayout);
- }
-
- public synchronized void addNotify() {
- if (super.peer == null) {
- super.peer = ((Component)this).getToolkit().createPanel(this);
- }
-
- super.addNotify();
- }
- }
-