Not logged in.  Login/Logout/Register | List snippets | | Create snippet | Upload image | Upload data

9
LINES

< > BotCompany Repo | #1015850 // onDoubleClickThreaded (for JList/JTable/other components) - run actions in new thread

JavaX fragment (include)

// runnable can be a func(O o) {} receving the selected item
static JList onDoubleClickThreaded(final JList list, final O r) {
  ret onDoubleClick(list, voidfunc(fS item) { thread-messagebox { callF(r, item); }});
}

// runnable can be a func(O o) {} receving the selected row index
static JTable onDoubleClickThreaded(final JTable table, final O r) {
  ret onDoubleClick(table, voidfunc(final int row) { thread-messagebox { callF(r, row); }});
}

Author comment

Began life as a copy of #1003586

download  show line numbers  debug dex  old transpilations   

Travelled to 13 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, cfunsshuasjs, gwrvuhgaqvyk, ishqpsrjomds, lpdgvwnxivlt, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tslmcundralx, tvejysmllsmz, vouqrxazstgt

No comments. add comment

Snippet ID: #1015850
Snippet name: onDoubleClickThreaded (for JList/JTable/other components) - run actions in new thread
Eternal ID of this version: #1015850/3
Text MD5: 3781f96e1b4c58f6f62a6a105b5b7e61
Author: stefan
Category: javax / gui
Type: JavaX fragment (include)
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2018-05-28 18:40:59
Source code size: 454 bytes / 9 lines
Pitched / IR pitched: No / No
Views / Downloads: 287 / 318
Version history: 2 change(s)
Referenced in: #1006654 - Standard functions list 2 (LIVE, continuation of #761)