* All files: Updated copyright to reflect Cygnus purchase.
[official-gcc.git] / libjava / java / awt / BorderLayout.java
blob4ec128f947719735a6c216d801151d6dde41a3d1
1 /* Copyright (C) 1999 Red Hat, Inc.
3 This file is part of libjava.
5 This software is copyrighted work licensed under the terms of the
6 Libjava License. Please consult the file "LIBJAVA_LICENSE" for
7 details. */
9 package java.awt;
11 /* A very incomplete placeholder. */
13 public class BorderLayout implements LayoutManager2
15 int hgap;
16 int vgap;
18 public BorderLayout (int hgap, int vgap)
20 this.hgap = hgap;
21 this.vgap = vgap;
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 */ }
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; }