Guest User

Untitled

a guest
Jun 18th, 2016
24
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. public void b1click() {
  2. berechnen1.addActionListener(new ActionListener() {
  3.  
  4.  
  5.  
  6. @Override
  7. public void actionPerformed(ActionEvent a) {
  8. // TODO Auto-generated method stub
  9.  
  10. int parse = Integer.parseInt(A0.getText());
  11.  
  12.  
  13. if(parse >= 14) {
  14. JOptionPane.showMessageDialog(null, "It works!");
  15.  
  16. } else {
  17. JOptionPane.showMessageDialog(null, "Bitte benutzen Sie den Punkterechner für unter 14 Jährige!");
  18. }
  19.  
  20.  
  21.  
  22.  
  23.  
  24.  
  25.  
  26.  
  27. }
  28.  
  29. });
  30.  
  31.  
  32. }
Add Comment
Please, Sign In to add comment