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

13
LINES

< > BotCompany Repo | #1019019 // tempOnKeyTyped

JavaX fragment (include)

static AutoCloseable tempOnKeyTyped(final int keyCode, final Runnable r, final JComponent a) {
  if (a == null) null;
  final KeyAdapter listener = new {
    @Override
    public void keyTyped(KeyEvent e) {
      print("keycode=" + e.getKeyCode());
      if (e.getKeyCode() == keyCode && e.getModifiers() == 0)
        pcallF(r);
    }
  };
  swing { a.addKeyListener(listener); }
  ret autoCloseable { swing { a.removeKeyListener(listener); } };
}

Author comment

Began life as a copy of #1019018

download  show line numbers  debug dex  old transpilations   

Travelled to 12 computer(s): bhatertpkbcr, cbybwowwnfue, cfunsshuasjs, gwrvuhgaqvyk, irmadwmeruwu, ishqpsrjomds, lpdgvwnxivlt, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tvejysmllsmz, vouqrxazstgt

No comments. add comment

Snippet ID: #1019019
Snippet name: tempOnKeyTyped
Eternal ID of this version: #1019019/2
Text MD5: b778211fb3f9bd7d101237cee849d6a5
Author: stefan
Category: javax / gui
Type: JavaX fragment (include)
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2018-10-21 12:54:03
Source code size: 460 bytes / 13 lines
Pitched / IR pitched: No / No
Views / Downloads: 251 / 282
Version history: 1 change(s)
Referenced in: [show references]