(ActionEvent evt)
| 77 | private Image icon; |
| 78 | private final ActionListener iconChangeListener = new ActionListener() { |
| 79 | @Override |
| 80 | public void actionPerformed(ActionEvent evt) { |
| 81 | if (isInitialized() && evt.getSource() == getIcon()) { |
| 82 | repaint(); |
| 83 | } |
| 84 | } |
| 85 | |
| 86 | }; |
| 87 | private Image maskedIcon; |
nothing calls this directly
no test coverage detected