Gets the root node of the selected launch tree. May return null. @return the root node
()
| 689 | * @return the root node |
| 690 | */ |
| 691 | public LaunchNode getRootNode() { |
| 692 | if (getSelectedTab() == null) { |
| 693 | return null; |
| 694 | } |
| 695 | return getSelectedTab().getRootNode(); |
| 696 | } |
| 697 | |
| 698 | /** |
| 699 | * Gets the current number of tabs (LaunchPanels) |
no test coverage detected