(ActionEvent event)
| 151 | Button okayButton = new Button("Okay"); |
| 152 | okayButton.addActionListener(new ActionListener() { |
| 153 | public void actionPerformed(ActionEvent event) { |
| 154 | box.setVisible(false); |
| 155 | } |
| 156 | }); |
| 157 | buttonPane.add(okayButton); |
| 158 | box.add(buttonPane, BorderLayout.SOUTH); |
nothing calls this directly
no test coverage detected