(Graphics g)
| 1362 | |
| 1363 | /// {@inheritDoc} |
| 1364 | @Override |
| 1365 | public void paint(Graphics g) { |
| 1366 | |
| 1367 | if (Display.getInstance().isNativeEditorVisible(this)) { |
| 1368 | if (!Display.impl.nativeEditorPaintsHint()) { |
| 1369 | paintHint(g); |
| 1370 | } |
| 1371 | return; |
| 1372 | } |
| 1373 | |
| 1374 | getUIManager().getLookAndFeel().drawTextArea(g, this); |
| 1375 | paintHint(g); |
| 1376 | } |
| 1377 | |
| 1378 | @Override |
| 1379 | void paintHint(Graphics g) { |
nothing calls this directly
no test coverage detected