* Makefile.in (PREPROCESSOR_DEFINES): New macro.
[official-gcc.git] / libjava / java / awt / LayoutManager2.java
blob6c0286c007ee4c4bff149c27a0fd1c14f29a932d
1 /* Copyright (C) 1999 Cygnus Solutions
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 /* Status: Believed complete and correct. */
13 public interface LayoutManager2 extends LayoutManager
15 public void addLayoutComponent (Component comp, Object constraints);
16 public float getLayoutAlignmentX (Container target);
17 public float getLayoutAlignmentY (Container target);
18 public void invalidateLayout (Container target);
19 public Dimension maximumLayoutSize (Container target);