here is some sample code of the border on a JPanel:
JPanel panelSettings = new JPanel();
panelSettings.setLayout(null);
panelSettings.setBorder(BorderFactory.createTitledBorder("Attack style"));
panelSettings.setBounds(10, 11, 250, 91);
contentPane.add(panelSettings);
Have fun!