Example usage for javafx.scene.control Tab getTabPane

List of usage examples for javafx.scene.control Tab getTabPane

Introduction

In this page you can find the example usage for javafx.scene.control Tab getTabPane.

Prototype

public final TabPane getTabPane() 

Source Link

Document

A reference to the TabPane that contains this tab instance.

Usage

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;
}