Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: Apache License 

import java.awt.Dimension;
import java.awt.Toolkit;
import javax.swing.JDialog;

public class Main {
    /**
     * This method centers the given dialog.
     *
     * @param  dDialog  The dialog to center.
     */
    public static void centerDialog(JDialog dDialog) {
        Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
        Dimension labelSize = dDialog.getSize();
        dDialog.setLocation((screenSize.width / 2) - (labelSize.width / 2),
                (screenSize.height / 2) - (labelSize.height / 2));
    }
}