Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
import java.awt.Dimension;
import java.awt.Toolkit;
import java.awt.Window;

public class Main {
    /**
     * Centers a given window on the screen.
     * 
     * @param window
     *            The window, frame or dialog
     */
    public static void centerOnScreen(Window window) {
        Dimension d = Toolkit.getDefaultToolkit().getScreenSize();
        int x = (int) ((d.getWidth() - window.getWidth()) / 2);
        int y = (int) ((d.getHeight() - window.getHeight()) / 2);
        window.setLocation(x, y);
    }
}