aboutsummaryrefslogtreecommitdiff
path: root/libjava/java/awt/LayoutManager.java
diff options
context:
space:
mode:
author(no author) <(no author)@138bc75d-0d04-0410-961f-82ee72b054a4>2000-05-19 04:43:18 +0000
committer(no author) <(no author)@138bc75d-0d04-0410-961f-82ee72b054a4>2000-05-19 04:43:18 +0000
commita128261d129ed48a61041389bbe6b6b034faf85c (patch)
tree9ff4ec8c2f62b66491ccf53b8ae2346a32461282 /libjava/java/awt/LayoutManager.java
parent2e1e56000d8528b1ca6423a687084ffc14221ee3 (diff)
This commit was manufactured by cvs2svn to create tagbounded-pointers-merge-20000519
'bounded-pointers-merge-20000519'. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/tags/bounded-pointers-merge-20000519@34013 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/java/awt/LayoutManager.java')
-rw-r--r--libjava/java/awt/LayoutManager.java20
1 files changed, 0 insertions, 20 deletions
diff --git a/libjava/java/awt/LayoutManager.java b/libjava/java/awt/LayoutManager.java
deleted file mode 100644
index 671596ec371..00000000000
--- a/libjava/java/awt/LayoutManager.java
+++ /dev/null
@@ -1,20 +0,0 @@
-/* Copyright (C) 1999 Free Software Foundation
-
- This file is part of libjava.
-
-This software is copyrighted work licensed under the terms of the
-Libjava License. Please consult the file "LIBJAVA_LICENSE" for
-details. */
-
-package java.awt;
-
-/* Status: Believed complete and correct. */
-
-public interface LayoutManager
-{
- public void addLayoutComponent (String name, Component comp);
- public void layoutContainer (Container parent);
- public Dimension minimumLayoutSize (Container parent);
- public Dimension preferredLayoutSize (Container parent);
- public void removeLayoutComponent (Component comp);
-}