Here you can find the source of wrapScrollPane(Component component)
public static JScrollPane wrapScrollPane(Component component)
//package com.java2s; /*/*from w ww . j a va2s . c o m*/ * SK's Minecraft Launcher * Copyright (C) 2010-2014 Albert Pham <http://www.sk89q.com> and contributors * Please see LICENSE.txt for license information. */ import javax.swing.*; import java.awt.*; public class Main { public static JScrollPane wrapScrollPane(Component component) { JScrollPane scrollPane = new JScrollPane(component); scrollPane .setVerticalScrollBarPolicy(ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS); return scrollPane; } }