Here you can find the source of createGroupBorder(String title)
public static Border createGroupBorder(String title)
//package com.java2s; //License from project: Open Source License import javax.swing.BorderFactory; import javax.swing.border.Border; import javax.swing.border.EtchedBorder; import javax.swing.border.TitledBorder; public class Main { public static Border createGroupBorder(String title) { return new TitledBorder(BorderFactory.createEtchedBorder(EtchedBorder.LOWERED), title, TitledBorder.LEFT, TitledBorder.TOP); }//from w w w . j av a2 s . c o m }