I am designing a simple payroll program in which I wish to prompt the user to add an employee object. The employee has several attributes
Employee(String firstName, String lastName, String address, String phoneNum, int employeeIdNum, double wageRate, double hours);
JOptionPane allows me to create separate input prompt windows for each individual variable but that is a lot of windows. I am trying to encompass all the information in one window so the user may fill in all 7 variables without having to hit ok/continue 7 times.