static Window centerWindow(Component c) { Window w = getWindow(c); if (w != null) w.setLocationRelativeTo(null); // magic trick ret w; } static Window centerWindow(Component c, int w, int h) { setWindowSize(c, w, h); ret centerWindow(w); }