(Frame frame)
| 645 | } |
| 646 | |
| 647 | public static void toFront(Frame frame) { |
| 648 | if (frame==null) return; |
| 649 | if (frame.getState()==Frame.ICONIFIED) |
| 650 | frame.setState(Frame.NORMAL); |
| 651 | frame.toFront(); |
| 652 | } |
| 653 | |
| 654 | public static void toFront(Window window) { |
| 655 | if (window==null) return; |
no test coverage detected