(String title, String message)
| 1408 | } |
| 1409 | |
| 1410 | private boolean showMessageConfirm(String title, String message) |
| 1411 | { |
| 1412 | JComponent msgComp = new JLabel(message); |
| 1413 | int ret = JOptionPane.showConfirmDialog(this, msgComp, title, JOptionPane.YES_NO_OPTION); |
| 1414 | return ret == JOptionPane.YES_OPTION; |
| 1415 | } |
| 1416 | |
| 1417 | @Override |
| 1418 | public void showErrorMessage(String title, String message) |