(Component frame, Object message, ActionListener a)
| 98 | } |
| 99 | |
| 100 | public void showMessageDialog(Component frame, Object message, ActionListener a) { |
| 101 | setListener(a); |
| 102 | JOptionPane.showMessageDialog(frame, message); |
| 103 | unsetListener(); |
| 104 | if (/** @j2sNative false || */true) |
| 105 | process("" + message); |
| 106 | } |
| 107 | |
| 108 | public void showMessageDialog(Component frame, Object message, String title, ActionListener a) { |
| 109 | showMessageDialog(frame, message, title, JOptionPane.INFORMATION_MESSAGE, a); |