(ActionEvent e)
| 811 | final JButton okButton = new JButton("OK"); |
| 812 | okButton.addActionListener(new ActionListener() { |
| 813 | @Override |
| 814 | public void actionPerformed(ActionEvent e) { |
| 815 | splash.setVisible(false); |
| 816 | } |
| 817 | }); |
| 818 | okButton.setBackground(Color.white); |
| 819 | splashBox.add(okButton, constraints); |
no test coverage detected