Example usage for javafx.scene.control Tab subclass-usage

List of usage examples for javafx.scene.control Tab subclass-usage

Introduction

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

Usage

From source file org.beryx.viewreka.fxapp.codearea.CodeAreaTab.java

/**
 * A {@link Tab} containing a {@link SimpleCodeArea}.
 */
public class CodeAreaTab extends Tab implements FXMLNode {
    private final File file;
    private final String initialFileText;

From source file fx.browser.Window.java

/**
 *
 * @author tbuczko
 */
public class Window extends Tab {
    private static final Logger logger = Logger.getLogger(Window.class.getName());

From source file com.playonlinux.javafx.mainwindow.console.ConsoleTab.java

public class ConsoleTab extends Tab implements PlayOnLinuxWindow {

    private static final String NOT_INSIDE_BLOCK = ">>> ";
    private static final String INSIDE_BLOCK = "... ";

    private final CommandHistory commandHistory = new CommandHistory();

From source file poe.trade.assist.SearchForm.java

/**
 * @author thirdy
 *
 */
public class SearchForm extends Tab {

From source file sonicScream.controllers.CategoryTabController.java

public final class CategoryTabController extends Tab {
    private final Category _category;

    @FXML
    private TreeView CategoryTabTreeView;