static JComponent withTitle(String title, Component c) { ret withTitle(withTitle_titlePanel(title), c); } static JComponent withTitle_titlePanel(String title) { ret new JLabel(title); } static JPanel withTitle(JComponent titleComponent, Component c) { titleComponent.setBorder(BorderFactory.createMatteBorder(0, 0, 1, 0, UIManager.getColor("Button.borderColor"))); JPanel panel = new JPanel(new BorderLayout()); panel.setBackground(Color.WHITE); panel.add(BorderLayout.NORTH, titleComponent); panel.add(BorderLayout.CENTER, wrap(c)); return panel; }