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();
}
Aggregations