diff options
Diffstat (limited to 'libjava/java/awt/Panel.java')
-rw-r--r-- | libjava/java/awt/Panel.java | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/libjava/java/awt/Panel.java b/libjava/java/awt/Panel.java new file mode 100644 index 0000000..59aa6e2 --- /dev/null +++ b/libjava/java/awt/Panel.java @@ -0,0 +1,32 @@ +/* Copyright (C) 2000 Free Software Foundation + + This file is part of libgcj. + +This software is copyrighted work licensed under the terms of the +Libgcj License. Please consult the file "LIBGCJ_LICENSE" for +details. */ + +package java.awt; + +/* An incomplete placeholder. */ + +public class Panel extends Container +{ + public Panel() + { + super(); + } + + public Panel(LayoutManager layout) + { + super(); + setLayout (layout); + } + + //public AccessibleContext getAccessibleContext() + + public void addNotify() + { + // FIXME + } +} |