Guest User

Untitled

a guest
Apr 21st, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.72 KB | None | 0 0
  1. class MakeEliteAction implements ActionListener {
  2.         public void actionPerformed(ActionEvent e) {
  3.             if(input.getText().isEmpty()) {
  4.                 JFrame temp = new JFrame();
  5.                 JOptionPane.showMessageDialog(temp, "You need to fill in the CPR field!", "Warning", JOptionPane.WARNING_MESSAGE);
  6.                 return;
  7.             } else {
  8.                 StartProgram.getDB().addElite(input.getText());
  9.                 JFrame temp = new JFrame();
  10.                 JOptionPane.showMessageDialog(temp, "Member made Elite successfully!", "Confirmation", JOptionPane.INFORMATION_MESSAGE, new ImageIcon("images/plus_16_elite.gif"));
  11.                 input.setText("");
  12.             }
  13.         }
  14.     }
Add Comment
Please, Sign In to add comment