static A setWindowSize(A c, int w, int h) { Window w = getWindow(c); if (w != null) w.setSize(w, h); ret c; } static A setWindowSize(int w, int h, A c) { ret setWindowSize(c, w, h); }