(Component frame, Object message, String title, ActionListener a)
| 128 | } |
| 129 | |
| 130 | public void showConfirmDialog(Component frame, Object message, String title, ActionListener a) { |
| 131 | showConfirmDialog(frame, message, title, JOptionPane.YES_NO_CANCEL_OPTION, JOptionPane.QUESTION_MESSAGE, a); |
| 132 | } |
| 133 | |
| 134 | public void showConfirmDialog(Component frame, Object message, String title, int optionType, ActionListener a) { |
| 135 | showConfirmDialog(frame, message, title, optionType, JOptionPane.QUESTION_MESSAGE, a); |