MCPcopy Create free account
hub / github.com/codenameone/CodenameOne / getTabComponentAt

Method getTabComponentAt

CodenameOne/src/com/codename1/ui/Tabs.java:1068–1071  ·  view source on GitHub ↗
(int index)

Source from the content-addressed store, hash-verified

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()) {

Callers 11

checkTabsCanBeSeenMethod · 0.95
getSelectedComponentMethod · 0.95
startMethod · 0.95
persistToXMLMethod · 0.80
persistComponentMethod · 0.80
getChildMethod · 0.80
mouseClickedMethod · 0.80
enableTabDraggingMethod · 0.80

Calls 2

checkIndexMethod · 0.95
getComponentAtMethod · 0.45

Tested by 3

enableTabDraggingMethod · 0.64