Advertisement
Guest User

Untitled

a guest
Oct 24th, 2014
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. public void addStupidListener(JTextField textField, String ZZZ) {
  2. textField.addFocusListener(new FocusListener() {
  3.  
  4. @Override
  5. public void focusGained(FocusEvent e) {
  6. System.out.println("selected" + ZZZ);
  7. }
  8.  
  9. @Override
  10. public void focusLost(FocusEvent e) {
  11. System.out.println("de-selected" + ZZZ);
  12. }
  13. });
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement