Search in sources :

Example 1 with TableInfoController

use of com.kyj.fx.voeditor.visual.words.spec.auto.msword.ui.skin.TableInfoController in project Gargoyle by callakrsos.

the class TableInfoTab method supplyNode.

@Override
public BorderPane supplyNode() {
    try {
        return FxUtil.loadAndControllerAction(TableInfoController.class, (TableInfoController c) -> {
            c.setBorTableDefine(new DatabaseTableView());
            TableView<Object> tbDefined = new TableView<>();
            c.setBorTableCollect(tbDefined);
        });
    } catch (Exception e) {
        LOGGER.error(ValueUtil.toString(e));
    }
    return new DatabaseTableView();
}
Also used : TableInfoController(com.kyj.fx.voeditor.visual.words.spec.auto.msword.ui.skin.TableInfoController) DatabaseTableView(com.kyj.fx.voeditor.visual.component.popup.DatabaseTableView) DatabaseTableView(com.kyj.fx.voeditor.visual.component.popup.DatabaseTableView) TableView(javafx.scene.control.TableView)

Aggregations

DatabaseTableView (com.kyj.fx.voeditor.visual.component.popup.DatabaseTableView)1 TableInfoController (com.kyj.fx.voeditor.visual.words.spec.auto.msword.ui.skin.TableInfoController)1 TableView (javafx.scene.control.TableView)1