Package org.jitterbit.application.ui.widget

Examples of org.jitterbit.application.ui.widget.TableFactory


        table.requestFocus();
    }

    private KongaTable createTableDelegate(PluginDataElementTemplate[] elements) {
        PluginDataElementTableModel model = new PluginDataElementTableModel(elements);
        TableFactory factory = ComponentFactories.tableFactory();
        KongaTable delegate = factory.newSortedTable(model, 6);
        customizeTableDelegate(delegate);
        return delegate;
    }
View Full Code Here


        tableModel = PluginTableModel.newSelectorModel(model);
        table = createTable();
    }

    private KongaRowTable createTable() {
        TableFactory factory = ComponentFactories.tableFactory();
        KongaTable raw = factory.newSortedTable(tableModel, 5);
        customizeTable(raw);
        return new KongaRowTable(raw);
    }
View Full Code Here

    private final KongaTable table;

    public AvailabilityResultTable(String caption, AvailabilityResultTableModel model) {
        this.caption = caption;
        TableFactory factory = ComponentFactories.tableFactory();
        table = factory.newSortedTable(model);
        table.setSortingStatus(PROBLEM, SortOrder.DESCENDING);
        table.setCellRendererFor(NAME, new PluginRenderer());
        table.setCellRendererFor(PROBLEM, new ProblemRenderer());
        table.setVisibleRowCount(5);
        TableStyles.normal().makeOver(table);
View Full Code Here

        table = createTable(model);
        controller = createController(table.getAdaptee());
    }

    private KongaRowTable createTable(DeployHistoryTableModel model) {
        TableFactory factory = ComponentFactories.tableFactory();
        KongaTable raw = factory.newSortedTable(model, 10);
        raw.setSortingStatus(DeployHistoryTableModel.DATE, SortOrder.DESCENDING);
        installRenderers(raw);
        updateStyle(raw);
        return new KongaRowTable(raw);
    }
View Full Code Here

    public AppliedPipelinePluginsTable(AppliedPipelinePluginsModel model) {
        table = createTable(PluginTableModel.newAppliedPluginsModel(model));
    }

    private KongaRowTable createTable(PluginTableModel tableModel) {
        TableFactory factory = ComponentFactories.tableFactory();
        KongaTable raw = factory.newSortedTable(tableModel, 5);
        customizeTable(raw);
        return new KongaRowTable(raw);
    }
View Full Code Here

TOP

Related Classes of org.jitterbit.application.ui.widget.TableFactory

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.