static JFrame centerFrame(Component c) { Window w = getWindow(c); if (w != null) w.setLocationRelativeTo(null); // magic trick ret castOpt(w, JFrame.class); } static JFrame centerFrame(int w, int h, Component c) { ret centerFrame(setFrameSize(w, h, c)); }