()
| 4409 | /// Finds next focusable component in leftward direction. This will first check `Component#getNextFocusLeft()` |
| 4410 | /// on the currently focused component. Failing that it will scan the form based on X-coord. |
| 4411 | Component findNextFocusLeft() { |
| 4412 | if (focused != null) { |
| 4413 | if (focused.getNextFocusLeft() != null) { |
| 4414 | return focused.getNextFocusLeft(); |
| 4415 | } |
| 4416 | return findNextFocusHorizontal(false); |
| 4417 | } |
| 4418 | return null; |
| 4419 | } |
| 4420 | |
| 4421 | /// Indicates whether focus should cycle within the form |
| 4422 | /// |
no test coverage detected