(int index)
| 1066 | /// |
| 1067 | /// - #insertTab |
| 1068 | public Component getTabComponentAt(int index) { |
| 1069 | checkIndex(index); |
| 1070 | return contentPane.getComponentAt(index); |
| 1071 | } |
| 1072 | |
| 1073 | private void checkIndex(int index) { |
| 1074 | if (index < 0 || index > tabsContainer.getComponentCount()) { |