(Graphics g)
| 1087 | } |
| 1088 | |
| 1089 | @Override |
| 1090 | public void paint(Graphics g) { |
| 1091 | if (isLegacyRenderer()) { |
| 1092 | initAutoResize(); |
| 1093 | getUIManager().getLookAndFeel().drawButton(g, this); |
| 1094 | return; |
| 1095 | } |
| 1096 | super.paintImpl(g); |
| 1097 | } |
| 1098 | |
| 1099 | /// Indicates whether text on the button should be drawn capitalized by |
| 1100 | /// default to match the Android design. By default only `Button` and |
nothing calls this directly
no test coverage detected