static void selectRow(final JTable table, final int i) { if (table != null) swing { if (i >= 0 && i < table.getRowCount()) { table.setRowSelectionInterval(i, i); scrollRowToVisible(table, i); } else table.clearSelection(); } } static void selectRow(final JList list, final int i) { if (list != null) swing { if (i >= 0 && i < listRowCount(list)) list.setSelectedIndex(i); else list.clearSelection(); } }
download show line numbers debug dex old transpilations
Travelled to 15 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, cfunsshuasjs, ddnzoavkxhuk, gwrvuhgaqvyk, irmadwmeruwu, ishqpsrjomds, lpdgvwnxivlt, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tslmcundralx, tvejysmllsmz, vouqrxazstgt
No comments. add comment
| Snippet ID: | #1004327 |
| Snippet name: | selectRow - select row in a JTable or JList |
| Eternal ID of this version: | #1004327/6 |
| Text MD5: | 01b9eafc1549db4356a1d2b34b6ef0a7 |
| Author: | stefan |
| Category: | javax / gui |
| Type: | JavaX fragment (include) |
| Public (visible to everyone): | Yes |
| Archived (hidden from active list): | No |
| Created/modified: | 2019-03-31 16:49:30 |
| Source code size: | 475 bytes / 18 lines |
| Pitched / IR pitched: | No / No |
| Views / Downloads: | 887 / 912 |
| Version history: | 5 change(s) |
| Referenced in: | #1006654 - Standard functions list 2 (LIVE, continuation of #761) #1020451 - selectRowIfNotNegative - select row in a JTable or JList if it isn't -1 #1024181 - selectTableRows - select rows in a JTable [dev.] |