static A setFrameWidth(int w, A c) { ret setFrameWidth(c, w); } static A setFrameWidth(A c, int w) { JFrame f = getFrame(c); if (f != null) f.setSize(w, f.getHeight()); ret c; }