Компоненты на JPanel не отображаются

Я создал JPanel и немного его модифицирую. Я изменяю его фон на градиентный цвет, вот класс.

public class JGradientPanel extends JPanel {
     private static final int N = 32;
     private Color color1, color2;
        public JGradientPanel(Color color1, Color color2) {
            this.setBorder(BorderFactory.createEmptyBorder(N, N, N, N));

            this.color1 = color1;
            this.color2 = color2;
        }

        @Override
        public void paintComponent(Graphics g) {
            super.paintComponent(g);
            Graphics2D g2d = (Graphics2D) g;
            //Color color1 = getBackground();
            //Color color2 = color1.darker();
            int w = getWidth();
            int h = getHeight();
            GradientPaint gp = new GradientPaint(
                0, 0, color1, 0, h, color2);
            g2d.setPaint(gp);
            g2d.fillRect(0, 0, w, h);
        }
}

Теперь я добавил несколько компонентов на панель, но она ничего не отображала, вот код

public JPanel getMenu() {
        JGradientPanel menu = new JGradientPanel(Color.WHITE, Color.white.darker());
        int menuHeight = (int) ((int) getHeight() * 0.07);
        menu.setPreferredSize(new Dimension(screenWidth,menuHeight));
        menu.setLayout(new GridLayout(1,10));
        menu.setBackground(Color.LIGHT_GRAY);

        //test
        JGradientButton test = new JGradientButton("test",Color.GREEN, Color.BLUE);
        menu.add(test);

        JLabel space = new JLabel(); // first blank space on the menu
        space.setBounds(0, 0, menu.getPreferredSize().width - 50, menu.getPreferredSize().height);
        space.setBorder(BorderFactory.createMatteBorder(0, 0, 0, 1, Color.GREEN));
        menu.add(space);
        JLabel moreSpaces[] = new JLabel[6];
        buttons = new JButton[buttonLabels.length];
        for(int counter = 0; counter < moreSpaces.length + buttonLabels.length; counter ++ ) {
            if(counter < 3) {
                buttons[counter] = new JButton(buttonLabels[counter]); //menu buttons

            } else {
                moreSpaces[counter - 3] = new JLabel(); // the rest of the blank in the menu
            }
        }
        // adding components to menu panel
        for(int counter = 0; counter < moreSpaces.length + buttonLabels.length; counter ++){
            if(counter < 3) {
                buttons[counter].setFocusPainted(false);
                menu.add(buttons[counter]); 
            } else {
                menu.add(moreSpaces[counter - 3]);
            }

        }
        return menu;
    }

Я что-то пропустил или сделал неправильно? Что не так с моим кодом?

Ответы на вопрос(1)

Ваш ответ на вопрос