List of usage examples for javafx.scene.control Tab getTabPane
public final TabPane getTabPane()
A reference to the TabPane that contains this tab instance.
From source file:de.micromata.mgc.javafx.launcher.gui.AbstractConfigDialog.java
public AbstractConfigTabController findConfigTabById(String id) { for (Tab tab : configurationTabs.getTabs()) { if (StringUtils.equals(tab.getId(), id) == true) { TabPane tabPane = tab.getTabPane(); }//from w ww .j a v a2 s.c o m } return null; }