Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
import java.awt.*;

public class Main {
    /**
     * Sets the given {@link Window} to the center of the sceen
     * 
     * @param window to set to the screen center
     */
    public static void setLocationToCenter(Window window) {
        window.setLocationRelativeTo(null);
    }
}