static JTable setRowHeight(final int h, final JTable t) { if (t != null) swing { t.setRowHeight(h); } ret t; } static JTable setRowHeight(JTable t, int h) { ret setRowHeight(h, t); }