Interface TabClosable
-
- All Known Implementing Classes:
ConfigurationPerspective,ExecutionPerspective,ExplorerPerspective,HopDataOrchestrationPerspective,MetadataPerspective
public interface TabClosable
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description voidcloseTab(org.eclipse.swt.custom.CTabFolderEvent event, org.eclipse.swt.custom.CTabItem tabItem)Close the tab on the perspectivedefault List<org.eclipse.swt.custom.CTabItem>getOtherTabs(org.eclipse.swt.custom.CTabItem selectedTabItem)Get all the other tabs of the selected oneorg.eclipse.swt.custom.CTabFoldergetTabFolder()Get the tabFolder of the perspectivedefault List<org.eclipse.swt.custom.CTabItem>getTabsToLeft(org.eclipse.swt.custom.CTabItem selectedTabItem)Get all the tabs on the left-hand side of the selected onedefault List<org.eclipse.swt.custom.CTabItem>getTabsToRight(org.eclipse.swt.custom.CTabItem selectedTabItem)Get all the tabs on the right-hand side of the selected one
-
-
-
Method Detail
-
closeTab
void closeTab(org.eclipse.swt.custom.CTabFolderEvent event, org.eclipse.swt.custom.CTabItem tabItem)Close the tab on the perspective
-
getTabsToRight
default List<org.eclipse.swt.custom.CTabItem> getTabsToRight(org.eclipse.swt.custom.CTabItem selectedTabItem)
Get all the tabs on the right-hand side of the selected one
-
getTabsToLeft
default List<org.eclipse.swt.custom.CTabItem> getTabsToLeft(org.eclipse.swt.custom.CTabItem selectedTabItem)
Get all the tabs on the left-hand side of the selected one
-
getOtherTabs
default List<org.eclipse.swt.custom.CTabItem> getOtherTabs(org.eclipse.swt.custom.CTabItem selectedTabItem)
Get all the other tabs of the selected one
-
getTabFolder
org.eclipse.swt.custom.CTabFolder getTabFolder()
Get the tabFolder of the perspective
-
-