(ActionEvent evt)
| 641 | bar.addActionListener(new ActionListener() { |
| 642 | |
| 643 | @Override |
| 644 | public void actionPerformed(ActionEvent evt) { |
| 645 | Component c = findScrollableChild(getContentPane()); |
| 646 | if (c != null) { |
| 647 | c.scrollRectToVisible(new Rectangle(0, 0, 10, 10), c); |
| 648 | } |
| 649 | } |
| 650 | }); |
| 651 | return bar; |
| 652 | } else { |
nothing calls this directly
no test coverage detected