Guest User

Untitled

a guest
Apr 15th, 2018
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. text_root_username = new JTextField();
  2. text_root_username.addKeyListener(this);//////
  3. text_root_password = new JPasswordField();
  4. text_root_password.addKeyListener(this);
  5.  
  6. @Override
  7. public void keyTyped(KeyEvent e) {
  8.  
  9.  
  10. if(text_root_password.getText().length()>=8){
  11. e.consume();
  12. }
  13. if(text_root_username.getText().length()>=8) {
  14. e.consume();
  15. }
  16. }
Add Comment
Please, Sign In to add comment