No need for this to be JComponent, just Component will do (from Charlie).

git-svn-id: https://samskivert.googlecode.com/svn/trunk@2543 6335cc39-0255-0410-8fd6-9bcaacd3b74c
This commit is contained in:
samskivert
2009-04-02 18:33:45 +00:00
parent 05204558eb
commit 262ad342ae
@@ -22,7 +22,6 @@ package com.samskivert.swing;
import java.awt.*;
import javax.swing.JComponent;
import javax.swing.JPanel;
import java.util.HashMap;
@@ -350,7 +349,7 @@ public abstract class GroupLayout
* with a configuration conducive to containing a row of buttons. Any supplied buttons are
* added to the box.
*/
public static JPanel makeButtonBox (JComponent... buttons)
public static JPanel makeButtonBox (Component... buttons)
{
return makeButtonBox(GroupLayout.CENTER, buttons);
}
@@ -360,10 +359,10 @@ public abstract class GroupLayout
* configuration conducive to containing a row of buttons. Any supplied buttons are added to
* the box.
*/
public static JPanel makeButtonBox (Justification justification, JComponent... buttons)
public static JPanel makeButtonBox (Justification justification, Component... buttons)
{
JPanel box = new JPanel(new HGroupLayout(NONE, justification));
for (JComponent button : buttons) {
for (Component button : buttons) {
box.add(button);
box.setOpaque(false);
}