Advertisement
Guest User

Untitled

a guest
Jan 29th, 2015
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. Action doNothing = new AbstractAction() {
  2. public void actionPerformed(ActionEvent e) {
  3. //do nothing
  4. }
  5. };
  6. component.getInputMap().put(KeyStroke.getKeyStroke("F2"),
  7. "doNothing");
  8. component.getActionMap().put("doNothing",
  9. doNothing);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement