Java JPanel Create createJPanel()

Here you can find the source of createJPanel()

Description

create J Panel

License

Open Source License

Declaration

public static JPanel createJPanel() 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

import javax.swing.JPanel;

public class Main {
    public static JPanel createJPanel() {
        JPanel panel = new JPanel();
        panel.setOpaque(false);/*from  w  w w  . j  av  a 2s .  c  o  m*/
        return panel;
    }
}

Related

  1. createBlankColorPanel(int height, int width, Color bkColor)
  2. createCenteredWindow(String title, Dimension size, JPanel panel, boolean exitOnClose)
  3. createFlowJPanelLeft(JComponent parent, int alignment)
  4. createGridedJPanel(JComponent parent, int columns)
  5. createJPanel(String name, LayoutManager lm, ComponentListener cl)
  6. createPaletteJPanel(String title)
  7. createStandardJPanel()
  8. createVerticalBoxJPanel(JComponent parent)