Gets the launch panel at the specified tab index. May return null. @param i the tab index @return the launch panel
(int i)
| 711 | * @return the launch panel |
| 712 | */ |
| 713 | public LaunchPanel getTab(int i) { |
| 714 | if (i >= tabbedPane.getTabCount()) { |
| 715 | return null; |
| 716 | } |
| 717 | return (LaunchPanel) tabbedPane.getComponentAt(i); |
| 718 | } |
| 719 | |
| 720 | /** |
| 721 | * Gets the html tab at the specified index. |
no test coverage detected