(Component c, Graphics g, int x, int y)
| 572 | } |
| 573 | |
| 574 | @Override |
| 575 | public synchronized void paintIcon(Component c, Graphics g, int x, int y) { |
| 576 | ImageObserver imageObserver = getImageObserver(); |
| 577 | if (imageObserver == null) { |
| 578 | imageObserver = c; |
| 579 | } |
| 580 | g.drawImage(getImage(), x, y, getIconWidth(), getIconHeight(), imageObserver); |
| 581 | } |
| 582 | }; |
| 583 | return outgoing; |
| 584 | } |
nothing calls this directly
no test coverage detected