NewAccountDialog.java 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. package eu.tankernn.accounts.frame;
  2. import javax.swing.JComponent;
  3. import javax.swing.JLabel;
  4. import javax.swing.JOptionPane;
  5. import javax.swing.JTextField;
  6. public class NewAccountDialog {
  7. JLabel lFirstName = new JLabel("First name:"), lLastName = new JLabel("Last name:");
  8. JTextField firstName = new JTextField(20), lastName = new JTextField(20);
  9. final JComponent[] components = {
  10. lFirstName, firstName, lLastName, lastName,
  11. };
  12. int result;
  13. /**
  14. * Create the dialog.
  15. */
  16. public NewAccountDialog() {
  17. result = JOptionPane.showConfirmDialog(null, components, "New Account", JOptionPane.DEFAULT_OPTION, JOptionPane.PLAIN_MESSAGE);
  18. }
  19. public String getFirstName() {
  20. return firstName.getText().trim();
  21. }
  22. public String getLastName() {
  23. return lastName.getText().trim();
  24. }
  25. public int getResult() {
  26. return result;
  27. }
  28. public boolean validate() {
  29. if (result != JOptionPane.OK_OPTION)
  30. return false;
  31. if (firstName.getText().isEmpty() || lastName.getText().isEmpty()) {
  32. JOptionPane.showMessageDialog(null, "Please fill in all the fields.");
  33. return false;
  34. }
  35. return true;
  36. }
  37. }