Here you can find the source of createPanelWithBoxLayout()
public static JPanel createPanelWithBoxLayout()
//package com.java2s; //License from project: Open Source License import javax.swing.BoxLayout; import javax.swing.JPanel; public class Main { public static JPanel createPanelWithBoxLayout() { final JPanel mainPanel = new JPanel(); final BoxLayout layout = new BoxLayout(mainPanel, BoxLayout.Y_AXIS); mainPanel.setLayout(layout);//w w w . ja v a 2s . c om return mainPanel; } }