Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
import javax.swing.JDialog;
import javax.swing.JFrame;

public class Main {
    /**
     * Used to centre the dialogs.
     */
    public static void centreOnParent(final JDialog dialog, final JFrame frame) {
        int x = frame.getX();
        x += (frame.getWidth() - dialog.getWidth()) / 2;

        int y = frame.getY();
        y += (frame.getHeight() - dialog.getHeight()) / 2;

        dialog.setLocation(x, y);
    }
}