(Graphics g)
| 866 | |
| 867 | /// {@inheritDoc} |
| 868 | @Override |
| 869 | public void paint(Graphics g) { |
| 870 | if (legacyRenderer || (badgeText != null && badgeText.length() > 0)) { |
| 871 | initAutoResize(); |
| 872 | getUIManager().getLookAndFeel().drawLabel(g, this); |
| 873 | return; |
| 874 | } |
| 875 | paintImpl(g); |
| 876 | } |
| 877 | |
| 878 | void paintImpl(Graphics g) { |
| 879 | initAutoResize(); |
no test coverage detected