()
| 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. |
no test coverage detected