JPanel(LayoutManager layout) constructor from JPanel has the following syntax.
public JPanel(LayoutManager layout)
In the following code shows how to use JPanel.JPanel(LayoutManager layout) constructor.
import java.awt.FlowLayout; /* w ww . ja v a 2 s . co m*/ import javax.swing.JButton; import javax.swing.JFrame; import javax.swing.JPanel; public class Main { public static void main(String[] a) { JFrame frame = new JFrame(); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); JPanel buttonPanel = new JPanel(new FlowLayout()); buttonPanel.add(new JButton("A")); frame.add(buttonPanel); frame.setSize(300, 200); frame.setVisible(true); } }