This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
java.awt.GridBagLayout
- From: Mark Anderson <mark at panonet dot net>
- To: java-patches at gcc dot gnu dot org
- Date: Mon, 21 Oct 2002 15:47:08 +0100
- Subject: java.awt.GridBagLayout
I am trying compile something that requires the setConstraints(Component,
GridBagConstraints) method of the above class to be implemented. I have
therefore implemented a stub method to do this. Below is the changelog entry
while the patch file is attached.
Do I also need to post this to one of the classpath mailing lists?
ChangeLog:
* java/awt/GridBagLayout.java
(setConstraints): New stubbed method added
--
Regards,
Mark
--- GridBagLayout.java~ Fri Aug 9 06:52:52 2002
+++ GridBagLayout.java Mon Oct 21 15:18:42 2002
@@ -89,4 +89,8 @@ public class GridBagLayout
public void invalidateLayout(Container target)
{
}
+
+ public void setConstraints(Component comp, GridBagConstraints constraints)
+ {
+ }
}