(Graphics g)
| 1760 | if (formLayeredPane == null) { |
| 1761 | formLayeredPane = new Container(new LayeredLayout()) { |
| 1762 | @Override |
| 1763 | protected void paintBackground(Graphics g) { |
| 1764 | if (getComponentCount() > 0) { |
| 1765 | if (super.isVisible()) { |
| 1766 | super.setVisible(false); |
| 1767 | Form.this.paint(g); |
| 1768 | super.setVisible(true); |
| 1769 | } |
| 1770 | } |
| 1771 | } |
| 1772 | |
| 1773 | @Override |
| 1774 | public void paintBackgrounds(Graphics g) { |
nothing calls this directly
no test coverage detected