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

Method findNextFocusDown

CodenameOne/src/com/codename1/ui/Form.java:4375–4383  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

4373 /// Finds next focusable component. This will first check `Component#getNextFocusDown()`
4374 /// on the currently focused component. Failing that it will scan the form based on Y-coord.
4375 Component findNextFocusDown() {
4376 if (focused != null) {
4377 if (focused.getNextFocusDown() != null) {
4378 return focused.getNextFocusDown();
4379 }
4380 return findNextFocusVertical(true);
4381 }
4382 return null;
4383 }
4384
4385 /// Finds next focusable component in upward direction. This will first check `Component#getNextFocusUp()`
4386 /// on the currently focused component. Failing that it will scan the form based on Y-coord.

Callers 2

updateFocusMethod · 0.95
moveScrollTowardsMethod · 0.95

Calls 2

findNextFocusVerticalMethod · 0.95
getNextFocusDownMethod · 0.45

Tested by

no test coverage detected