Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import java.awt.GridBagLayout;

import javax.swing.JPanel;

public class Main {
    public static void getPanelGridBagLayout(JPanel panel) {
        panel.setLayout(new GridBagLayout());
    }
}