()
| 169 | } |
| 170 | |
| 171 | public void checkExit() |
| 172 | { |
| 173 | int response = JOptionPane.showConfirmDialog(this, "Are you sure you wish to cancel and exit?", "Confirm Exit", |
| 174 | JOptionPane.OK_CANCEL_OPTION); |
| 175 | if (response == JOptionPane.OK_OPTION) |
| 176 | { |
| 177 | PCGenDataConvert.savePrefs(); |
| 178 | GracefulExit.exit(0); |
| 179 | } |
| 180 | } |
| 181 | |
| 182 | private void runNextPanel() |
| 183 | { |
no test coverage detected