Here you can find the source of newJScrollPane(String title, Component c)
public static JScrollPane newJScrollPane(String title, Component c)
//package com.java2s; //License from project: Apache License import java.awt.Component; import javax.swing.BorderFactory; import javax.swing.JScrollPane; public class Main { public static JScrollPane newJScrollPane(String title, Component c) { JScrollPane sp = new JScrollPane(c); sp.setBorder(BorderFactory.createTitledBorder(title)); return sp; }//w w w . j a va 2 s .c o m }