()
| 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. |
| 4387 | Component findNextFocusUp() { |
| 4388 | if (focused != null) { |
| 4389 | if (focused.getNextFocusUp() != null) { |
| 4390 | return focused.getNextFocusUp(); |
| 4391 | } |
| 4392 | return findNextFocusVertical(false); |
| 4393 | } |
| 4394 | return null; |
| 4395 | } |
| 4396 | |
| 4397 | /// Finds next focusable component in rightward direction. This will first check `Component#getNextFocusRight()` |
| 4398 | /// on the currently focused component. Failing that it will scan the form based on X-coord. |
no test coverage detected