MCPcopy Create free account
hub / github.com/codenameone/CodenameOne / paint

Method paint

CodenameOne/src/com/codename1/ui/TextArea.java:1364–1376  ·  view source on GitHub ↗
(Graphics g)

Source from the content-addressed store, hash-verified

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) {

Callers

nothing calls this directly

Calls 7

getInstanceMethod · 0.95
paintHintMethod · 0.95
getLookAndFeelMethod · 0.80
isNativeEditorVisibleMethod · 0.45
drawTextAreaMethod · 0.45
getUIManagerMethod · 0.45

Tested by

no test coverage detected