Returns the tab associated with the specified Data object. May return null. @param data the Data @return the tab
(Data data)
| 643 | * @return the tab |
| 644 | */ |
| 645 | public DataToolTab getTab(Data data) { |
| 646 | int i = getTabIndex(data); |
| 647 | return (i > -1) ? getTab(i) : null; |
| 648 | } |
| 649 | |
| 650 | /** |
| 651 | * Returns the tab at the specified index. May return null. |
no test coverage detected