static JTable showTableWithImages(final L cols, final L data) { ret showTableWithImages(autoTitle(), cols, data); } static JTable showTableWithImages(final S title, final L cols, final L data) { ret showTableWithImages(title, cols, data, null); } static JTable showTableWithImages(final S title, final L cols, final L data, final JTable _table) { ret (JTable) swingAndWait(func { JTable table = _table != null ? _table : sexyTable(); fillTableWithData(table, data, cols); if (_table == null) table.setRowHeight(100); showFrame(title, table); ret table; }); }