()
| 2542 | } |
| 2543 | |
| 2544 | void initFocused() { |
| 2545 | if (focused == null) { |
| 2546 | Component focusable = formLayeredPane != null ? |
| 2547 | formLayeredPane.findFirstFocusable() : |
| 2548 | null; |
| 2549 | if (focusable == null) { |
| 2550 | focusable = getActualPane().findFirstFocusable(); |
| 2551 | } |
| 2552 | setFocused(focusable); |
| 2553 | if (!Display.getInstance().shouldRenderSelection()) { |
| 2554 | return; |
| 2555 | } |
| 2556 | layoutContainer(); |
| 2557 | } |
| 2558 | } |
| 2559 | |
| 2560 | /// Displays the current form on the screen |
| 2561 | public void show() { |
no test coverage detected