OSDN Git Service

* All files: Updated copyright information.
[pf3gnuchains/gcc-fork.git] / libjava / java / awt / BorderLayout.java
1 /* Copyright (C) 1999  Free Software Foundation
2
3    This file is part of libjava.
4
5 This software is copyrighted work licensed under the terms of the
6 Libjava License.  Please consult the file "LIBJAVA_LICENSE" for
7 details.  */
8
9 package java.awt;
10
11 /* A very incomplete placeholder. */
12
13 public class BorderLayout implements LayoutManager2
14 {
15   int hgap;
16   int vgap;
17
18   public BorderLayout (int hgap, int vgap)
19   {
20     this.hgap = hgap;
21     this.vgap = vgap;
22   }
23
24   public void addLayoutComponent (String name, Component comp)
25   { /* FIXME */ }
26   public void layoutContainer (Container parent)
27   { /* FIXME */ }
28   public Dimension minimumLayoutSize (Container parent)
29   { /* FIXME */ return null; }
30   public Dimension preferredLayoutSize (Container parent)
31   { /* FIXME */ return null; }
32   public void removeLayoutComponent (Component comp)
33   { /* FIXME */ }
34
35   public void addLayoutComponent (Component comp, Object constraints)
36   { /* FIXME */ }
37   public float getLayoutAlignmentX (Container target)
38   { /* FIXME */ return (float) 0.0; }
39   public float getLayoutAlignmentY (Container target)
40   { /* FIXME */ return (float) 0.0; }
41   public void invalidateLayout (Container target)
42   { /* FIXME */ }
43   public Dimension maximumLayoutSize (Container target)
44   { /* FIXME */ return null; }
45
46 }