()
| 481 | // put the focus on the new tab |
| 482 | SwingUtilities.invokeLater(new Runnable() { |
| 483 | @Override |
| 484 | public void run() { |
| 485 | if (largeView != null) { |
| 486 | if ((largeView instanceof JTabbedPane) |
| 487 | && (((JTabbedPane)largeView).getSelectedComponent() != null)) { |
| 488 | ((JTabbedPane)largeView).getSelectedComponent().requestFocus(); |
| 489 | } else { |
| 490 | largeView.requestFocus(); |
| 491 | } |
| 492 | } |
| 493 | } |
| 494 | }); |
| 495 | } |
| 496 | } |
nothing calls this directly
no test coverage detected