(ActionEvent e)
| 130 | content.add(new JLabel("this is the option panel"), BorderLayout.CENTER); |
| 131 | b.addActionListener(new ActionListener() { |
| 132 | @Override |
| 133 | public void actionPerformed(ActionEvent e) { |
| 134 | Test_Dialog.this.onDialogReturn(JOptionPane.showConfirmDialog(Test_Dialog.this, |
| 135 | "<html>The frame is now " + (isResizable() ? "<b>NOT</b> " : "") + "resizable.</html>", |
| 136 | "Testing JOptionPane", JOptionPane.OK_CANCEL_OPTION)); |
| 137 | setResizable(!isResizable()); |
| 138 | } |
| 139 | |
| 140 | }); |
| 141 | p.add(b); |
nothing calls this directly
no test coverage detected