Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
import javax.swing.*;

public class Main {
    /**
     * Packs, centers, and shows the frame.
     *
     * @param f
     */
    public static void finalize(JFrame f) {
        f.pack();
        f.setLocationRelativeTo(null);
        f.setVisible(true);
    }
}