Here you can find the source of buildLabeledBorder(String label)
public static Border buildLabeledBorder(String label)
//package com.java2s; //License from project: Apache License import javax.swing.border.Border; import javax.swing.border.EtchedBorder; import javax.swing.border.TitledBorder; public class Main { public static Border buildLabeledBorder(String label) { TitledBorder ret = new TitledBorder(new EtchedBorder(), label); return ret; }/*from w w w . j a v a2 s .co m*/ }